This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "attach", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # "scripts": { | |
| # "build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files", | |
| # "dev:server": "ts-node-dev -r tsconfig-paths/register --inspect --exit-child --transpile-only --ignore-watch node_modules src/shared/infra/http/server.ts", | |
| # "pattern": "bash ./node_modules/.bin/pattern.sh ./src/modules $2" | |
| # }, | |
| # "prisma": { | |
| # "schema": "./src/shared/infra/prisma/schema.prisma" | |
| # }, | |
| cd $1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unbind C-b | |
| set-option -g prefix Home | |
| set -g status-left-length 85 | |
| set -g status-left "working on#[fg=colour200] #S" | |
| set -g window-status-current-format "#[fg=black,bold bg=default]│#[fg=white bg=cyan]#W#[fg=black,bold bg=default]│" | |
| set -g window-status-current-format "#[fg=black,bold bg=default]│#[fg=colour200 bg=black]#W#[fg=black,bold bg=default]│" | |
| set -g status-style bg=default | |
| set -g status-right "#[fg=magenta] #[bg=gray] %b %d %Y %l:%M %p" | |
| set -g status-right '#(gitmux "#{pane_current_path}")' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- general | |
| lvim.log.level = "warn" | |
| lvim.format_on_save = true | |
| lvim.colorscheme = "omni" | |
| lvim.builtin.cmp.confirm_opts.select = true | |
| lvim.leader = "space" | |
| lvim.keys.normal_mode["<S-l>"] = ":BufferLineCycleNext<CR>" | |
| lvim.keys.normal_mode["<S-h>"] = ":BufferLineCyclePrev<CR>" | |
| lvim.builtin.alpha.active = true | |
| lvim.builtin.alpha.mode = "dashboard" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "^(code|discord|rocket.chat|slack|microsoft teams - preview)$" | |
| None, Up, Button4, 2 | |
| None, Down, Button5, 2 | |
| ".*-chrome*" | |
| None, Up, Button4, 2 | |
| None, Down, Button5, 2 | |
| Shift_L, Up, Shift_L|Button4, 2 | |
| Shift_L, Down, Shift_L|Button5, 2 | |
| Control_L, Up, Control_L|Button4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { RadioButton } from 'react-native-paper'; | |
| . | |
| . | |
| . | |
| const [checked, setChecked] = React.useState('first'); | |
| return ( | |
| <RadioButtonView> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const [searchValue, setSearchValue] = useState(''); | |
| <SearchInput | |
| value={searchValue} | |
| onChangeText={setSearchValue} | |
| placeholder="Pesquisa ..." | |
| /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // On android/app | |
| project.ext.vectoricons = [ | |
| iconFontNames: [ 'Feather.ttf' ] // Name of the font files you want to copy | |
| ] | |
| apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const [selectedDate, setSelectedDate] = useState(new Date()); | |
| const handleDateChange = useCallback((day: Date, modifiers: DayModifiers) => { | |
| if (modifiers.available) { | |
| setSelectedDate(day); | |
| } | |
| }, []); | |
| <DayPicker | |
| weekdaysShort={['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab']} |