├── MarcoBrunoBR ├── config-hyper.js ├── vscode-plugins-themes.md ├── vscode.json └── zshrc.sh ├── PauloPinheiro ├── config-hyper.js ├── vscode_config.json └── zshrc.sh ├── descricao_das_extensoes_e_plugins_do_vs-code.md └── vscode-plugins-themes.md /MarcoBrunoBR/config-hyper.js: -------------------------------------------------------------------------------- 1 | // Future versions of Hyper may add additional config options, 2 | // which will not automatically be merged into this file. 3 | // See https://hyper.is#cfg for all currently supported options. 4 | 5 | module.exports = { 6 | config: { 7 | opacity: 0.5, 8 | // choose either `'stable'` for receiving highly polished, 9 | // or `'canary'` for less polished but more frequent updates 10 | updateChannel: 'stable', 11 | 12 | // default font size in pixels for all tabs 13 | fontSize: 30, 14 | 15 | // font family with optional fallbacks 16 | fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', 17 | 18 | // default font weight: 'normal' or 'bold' 19 | fontWeight: 'normal', 20 | 21 | // font weight for bold characters: 'normal' or 'bold' 22 | fontWeightBold: 'bold', 23 | 24 | // line height as a relative unit 25 | lineHeight: 1, 26 | 27 | // letter spacing as a relative unit 28 | letterSpacing: 0, 29 | 30 | // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) 31 | cursorColor: 'rgba(248,28,229,0.8)', 32 | 33 | // terminal text color under BLOCK cursor 34 | cursorAccentColor: '#000', 35 | 36 | // `'BEAM'` for |, `'UNDERLINE'` for _, `'BLOCK'` for █ 37 | cursorShape: 'BLOCK', 38 | 39 | // set to `true` (without backticks and without quotes) for blinking cursor 40 | cursorBlink: false, 41 | 42 | // color of the text 43 | foregroundColor: '#fff', 44 | 45 | // terminal background color 46 | // opacity is only supported on macOS 47 | backgroundColor: '#000', 48 | 49 | // terminal selection color 50 | selectionColor: 'rgba(248,28,229,0.3)', 51 | 52 | // border color (window, tabs) 53 | borderColor: '#333', 54 | 55 | // custom CSS to embed in the main window 56 | css: '', 57 | 58 | // custom CSS to embed in the terminal window 59 | termCSS: '', 60 | 61 | // if you're using a Linux setup which show native menus, set to false 62 | // default: `true` on Linux, `true` on Windows, ignored on macOS 63 | showHamburgerMenu: '', 64 | 65 | // set to `false` (without backticks and without quotes) if you want to hide the minimize, maximize and close buttons 66 | // additionally, set to `'left'` if you want them on the left, like in Ubuntu 67 | // default: `true` (without backticks and without quotes) on Windows and Linux, ignored on macOS 68 | showWindowControls: '', 69 | 70 | // custom padding (CSS format, i.e.: `top right bottom left`) 71 | padding: '12px 14px', 72 | 73 | // the full list. if you're going to provide the full color palette, 74 | // including the 6 x 6 color cubes and the grayscale map, just provide 75 | // an array here instead of a color map object 76 | colors: { 77 | black: '#000000', 78 | red: '#C51E14', 79 | green: '#1DC121', 80 | yellow: '#C7C329', 81 | blue: '#0A2FC4', 82 | magenta: '#C839C5', 83 | cyan: '#20C5C6', 84 | white: '#C7C7C7', 85 | lightBlack: '#686868', 86 | lightRed: '#FD6F6B', 87 | lightGreen: '#67F86F', 88 | lightYellow: '#FFFA72', 89 | lightBlue: '#6A76FB', 90 | lightMagenta: '#FD7CFC', 91 | lightCyan: '#68FDFE', 92 | lightWhite: '#FFFFFF', 93 | }, 94 | 95 | // the shell to run when spawning a new session (i.e. /usr/local/bin/fish) 96 | // if left empty, your system's login shell will be used by default 97 | // 98 | // Windows 99 | // - Make sure to use a full path if the binary name doesn't work 100 | // - Remove `--login` in shellArgs 101 | // 102 | // Bash on Windows 103 | // - Example: `C:\\Windows\\System32\\bash.exe` 104 | // 105 | // PowerShell on Windows 106 | // - Example: `C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe` 107 | shell: '', 108 | 109 | // for setting shell arguments (i.e. for using interactive shellArgs: `['-i']`) 110 | // by default `['--login']` will be used 111 | shellArgs: ['--login'], 112 | 113 | // for environment variables 114 | env: {}, 115 | 116 | // set to `false` for no bell 117 | bell: 'SOUND', 118 | 119 | // if `true` (without backticks and without quotes), selected text will automatically be copied to the clipboard 120 | copyOnSelect: false, 121 | 122 | // if `true` (without backticks and without quotes), hyper will be set as the default protocol client for SSH 123 | defaultSSHApp: true, 124 | 125 | // if `true` (without backticks and without quotes), on right click selected text will be copied or pasted if no 126 | // selection is present (`true` by default on Windows and disables the context menu feature) 127 | // quickEdit: true, 128 | 129 | // URL to custom bell 130 | // bellSoundURL: 'http://example.com/bell.mp3', 131 | 132 | // for advanced config flags please refer to https://hyper.is/#cfg 133 | }, 134 | 135 | // a list of plugins to fetch and install from npm 136 | // format: [@org/]project[#version] 137 | // examples: 138 | // `hyperpower` 139 | // `@company/project` 140 | // `project#1.0.1` 141 | plugins: [ 142 | "hyper-search", 143 | "hyper-active-tab", 144 | "hyper-night-owl", 145 | "hyper-afterglow", 146 | "hyper-fading-scrollbar", 147 | "hyper-opacity", 148 | "hyperborder", 149 | "hyperpower" 150 | ], 151 | 152 | // in development, you can create a directory under 153 | // `~/.hyper_plugins/local/` and include it here 154 | // to load it and avoid it being `npm install`ed 155 | localPlugins: [], 156 | 157 | keymaps: { 158 | // Example 159 | // 'window:devtools': 'cmd+alt+o', 160 | }, 161 | }; -------------------------------------------------------------------------------- /MarcoBrunoBR/vscode-plugins-themes.md: -------------------------------------------------------------------------------- 1 | - [Font FiraCode](https://github.com/tonsky/FiraCode) 2 | 3 | - [Vulgocode Color Theme](https://marketplace.visualstudio.com/items?itemName=alexandreramos.vulgocode-color-theme) 4 | 5 | - [Color Highlight](https://marketplace.visualstudio.com/items?itemName=naumovs.color-highlight) 6 | 7 | - [vscode-icons](https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons) 8 | 9 | - [Bracket Pair Colorizer](https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer) 10 | 11 | - [Discord Presence](https://marketplace.visualstudio.com/items?itemName=icrawl.discord-vscode) 12 | 13 | - [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) 14 | 15 | - [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) 16 | 17 | - [Live Share](https://marketplace.visualstudio.com/items?itemName=MS-vsliveshare.vsliveshare) 18 | 19 | - [Prettier - Code formatter](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) 20 | 21 | - [styled-components-snippets](https://marketplace.visualstudio.com/items?itemName=jonkwheeler.styled-components-snippets) 22 | 23 | - [Twitch Highlighter](https://marketplace.visualstudio.com/items?itemName=clarkio.twitch-highlighter) 24 | 25 | - [vscode-styled-components](https://marketplace.visualstudio.com/items?itemName=jpoissonnier.vscode-styled-components) 26 | 27 | - [Reactjs code snippets](https://marketplace.visualstudio.com/items?itemName=xabikos.ReactSnippets) 28 | 29 | - [Path Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense&WT.mc_id=social-twitch-gllemos) 30 | -------------------------------------------------------------------------------- /MarcoBrunoBR/vscode.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.zoomLevel": 3, 3 | "workbench.startupEditor": "newUntitledFile", 4 | "twitchHighlighter.channels": "marcobrunobr", 5 | "twitchHighlighter.nickname": "Gueio", 6 | "markdown-preview-enhanced.liveUpdate": true, 7 | "editor.fontLigatures": true, 8 | "editor.fontFamily": "Fira Code", 9 | "workbench.colorTheme": "Vulgocode Color Theme", 10 | "emmet.includeLanguages": { 11 | "javascript": "css" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MarcoBrunoBR/zshrc.sh: -------------------------------------------------------------------------------- 1 | # If you come from bash you might have to change your $PATH. 2 | # export PATH=$HOME/bin:/usr/local/bin:$PATH 3 | 4 | # Path to your oh-my-zsh installation. 5 | export ZSH="/home/marcobruno/.oh-my-zsh" 6 | 7 | # Set name of the theme to load --- if set to "random", it will 8 | # load a random theme each time oh-my-zsh is loaded, in which case, 9 | # to know which specific one was loaded, run: echo $RANDOM_THEME 10 | # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes 11 | ZSH_THEME="robbyrussell" 12 | 13 | # Set list of themes to pick from when loading at random 14 | # Setting this variable when ZSH_THEME=random will cause zsh to load 15 | # a theme from this variable instead of looking in ~/.oh-my-zsh/themes/ 16 | # If set to an empty array, this variable will have no effect. 17 | # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) 18 | 19 | # Uncomment the following line to use case-sensitive completion. 20 | # CASE_SENSITIVE="true" 21 | 22 | # Uncomment the following line to use hyphen-insensitive completion. 23 | # Case-sensitive completion must be off. _ and - will be interchangeable. 24 | # HYPHEN_INSENSITIVE="true" 25 | 26 | # Uncomment the following line to disable bi-weekly auto-update checks. 27 | # DISABLE_AUTO_UPDATE="true" 28 | 29 | # Uncomment the following line to change how often to auto-update (in days). 30 | # export UPDATE_ZSH_DAYS=13 31 | 32 | # Uncomment the following line to disable colors in ls. 33 | # DISABLE_LS_COLORS="true" 34 | 35 | # Uncomment the following line to disable auto-setting terminal title. 36 | # DISABLE_AUTO_TITLE="true" 37 | 38 | # Uncomment the following line to enable command auto-correction. 39 | # ENABLE_CORRECTION="true" 40 | 41 | # Uncomment the following line to display red dots whilst waiting for completion. 42 | # COMPLETION_WAITING_DOTS="true" 43 | 44 | # Uncomment the following line if you want to disable marking untracked files 45 | # under VCS as dirty. This makes repository status check for large repositories 46 | # much, much faster. 47 | # DISABLE_UNTRACKED_FILES_DIRTY="true" 48 | 49 | # Uncomment the following line if you want to change the command execution time 50 | # stamp shown in the history command output. 51 | # You can set one of the optional three formats: 52 | # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" 53 | # or set a custom format using the strftime function format specifications, 54 | # see 'man strftime' for details. 55 | # HIST_STAMPS="mm/dd/yyyy" 56 | 57 | # Would you like to use another custom folder than $ZSH/custom? 58 | # ZSH_CUSTOM=/path/to/new-custom-folder 59 | 60 | # Which plugins would you like to load? 61 | # Standard plugins can be found in ~/.oh-my-zsh/plugins/* 62 | # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ 63 | # Example format: plugins=(rails git textmate ruby lighthouse) 64 | # Add wisely, as too many plugins slow down shell startup. 65 | plugins=(git) 66 | 67 | source $ZSH/oh-my-zsh.sh 68 | 69 | # User configuration 70 | 71 | # export MANPATH="/usr/local/man:$MANPATH" 72 | 73 | # You may need to manually set your language environment 74 | # export LANG=en_US.UTF-8 75 | 76 | # Preferred editor for local and remote sessions 77 | # if [[ -n $SSH_CONNECTION ]]; then 78 | # export EDITOR='vim' 79 | # else 80 | # export EDITOR='mvim' 81 | # fi 82 | 83 | # Compilation flags 84 | # export ARCHFLAGS="-arch x86_64" 85 | 86 | # ssh 87 | # export SSH_KEY_PATH="~/.ssh/rsa_id" 88 | 89 | # Set personal aliases, overriding those provided by oh-my-zsh libs, 90 | # plugins, and themes. Aliases can be placed here, though oh-my-zsh 91 | # users are encouraged to define aliases within the ZSH_CUSTOM folder. 92 | # For a full list of active aliases, run `alias`. 93 | # 94 | # Example aliases 95 | # alias zshconfig="mate ~/.zshrc" 96 | # alias ohmyzsh="mate ~/.oh-my-zsh" -------------------------------------------------------------------------------- /PauloPinheiro/config-hyper.js: -------------------------------------------------------------------------------- 1 | // Future versions of Hyper may add additional config options, 2 | // which will not automatically be merged into this file. 3 | // See https://hyper.is#cfg for all currently supported options. 4 | 5 | module.exports = { 6 | config: { 7 | // choose either `'stable'` for receiving highly polished, 8 | // or `'canary'` for less polished but more frequent updates 9 | updateChannel: "stable", 10 | 11 | // default font size in pixels for all tabs 12 | fontSize: 14, 13 | 14 | // font family with optional fallbacks 15 | fontFamily: "Fira Code", 16 | 17 | // default font weight: 'normal' or 'bold' 18 | fontWeight: "normal", 19 | 20 | // font weight for bold characters: 'normal' or 'bold' 21 | fontWeightBold: "bold", 22 | 23 | // line height as a relative unit 24 | lineHeight: 1, 25 | 26 | // letter spacing as a relative unit 27 | letterSpacing: 0, 28 | 29 | // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) 30 | cursorColor: "rgba(248,28,229,0.8)", 31 | 32 | // terminal text color under BLOCK cursor 33 | cursorAccentColor: "#000", 34 | 35 | // `'BEAM'` for |, `'UNDERLINE'` for _, `'BLOCK'` for █ 36 | cursorShape: "BLOCK", 37 | 38 | // set to `true` (without backticks and without quotes) for blinking cursor 39 | cursorBlink: false, 40 | 41 | // color of the text 42 | foregroundColor: "#fff", 43 | 44 | // terminal background color 45 | // opacity is only supported on macOS 46 | backgroundColor: "#000", 47 | 48 | // terminal selection color 49 | selectionColor: "rgba(248,28,229,0.3)", 50 | 51 | // border color (window, tabs) 52 | borderColor: "#333", 53 | 54 | // custom CSS to embed in the main window 55 | css: "", 56 | 57 | // custom CSS to embed in the terminal window 58 | termCSS: "", 59 | 60 | // if you're using a Linux setup which show native menus, set to false 61 | // default: `true` on Linux, `true` on Windows, ignored on macOS 62 | showHamburgerMenu: "", 63 | 64 | // set to `false` (without backticks and without quotes) if you want to hide the minimize, maximize and close buttons 65 | // additionally, set to `'left'` if you want them on the left, like in Ubuntu 66 | // default: `true` (without backticks and without quotes) on Windows and Linux, ignored on macOS 67 | showWindowControls: "", 68 | 69 | // custom padding (CSS format, i.e.: `top right bottom left`) 70 | padding: "12px 14px", 71 | 72 | // the full list. if you're going to provide the full color palette, 73 | // including the 6 x 6 color cubes and the grayscale map, just provide 74 | // an array here instead of a color map object 75 | colors: { 76 | black: "#000000", 77 | red: "#C51E14", 78 | green: "#1DC121", 79 | yellow: "#C7C329", 80 | blue: "#0A2FC4", 81 | magenta: "#C839C5", 82 | cyan: "#20C5C6", 83 | white: "#C7C7C7", 84 | lightBlack: "#686868", 85 | lightRed: "#FD6F6B", 86 | lightGreen: "#67F86F", 87 | lightYellow: "#FFFA72", 88 | lightBlue: "#6A76FB", 89 | lightMagenta: "#FD7CFC", 90 | lightCyan: "#68FDFE", 91 | lightWhite: "#FFFFFF" 92 | }, 93 | 94 | // the shell to run when spawning a new session (i.e. /usr/local/bin/fish) 95 | // if left empty, your system's login shell will be used by default 96 | // 97 | // Windows 98 | // - Make sure to use a full path if the binary name doesn't work 99 | // - Remove `--login` in shellArgs 100 | // 101 | // Bash on Windows 102 | // - Example: `C:\\Windows\\System32\\bash.exe` 103 | // 104 | // PowerShell on Windows 105 | // - Example: `C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe` 106 | shell: "C:\\Windows\\System32\\bash.exe", 107 | 108 | // for setting shell arguments (i.e. for using interactive shellArgs: `['-i']`) 109 | // by default `['--login']` will be used 110 | shellArgs: ["--login", "-i", "/c wsl"], 111 | 112 | // for environment variables 113 | env: {}, 114 | 115 | // set to `false` for no bell 116 | bell: "SOUND", 117 | 118 | // if `true` (without backticks and without quotes), selected text will automatically be copied to the clipboard 119 | copyOnSelect: false, 120 | 121 | // if `true` (without backticks and without quotes), hyper will be set as the default protocol client for SSH 122 | defaultSSHApp: true, 123 | 124 | // if `true` (without backticks and without quotes), on right click selected text will be copied or pasted if no 125 | // selection is present (`true` by default on Windows and disables the context menu feature) 126 | quickEdit: false, 127 | 128 | // choose either `'vertical'`, if you want the column mode when Option key is hold during selection (Default) 129 | // or `'force'`, if you want to force selection regardless of whether the terminal is in mouse events mode 130 | // (inside tmux or vim with mouse mode enabled for example). 131 | macOptionSelectionMode: "vertical", 132 | 133 | // URL to custom bell 134 | // bellSoundURL: 'http://example.com/bell.mp3', 135 | 136 | // Whether to use the WebGL renderer. Set it to false to use canvas-based 137 | // rendering (slower, but supports transparent backgrounds) 138 | webGLRenderer: true 139 | 140 | // for advanced config flags please refer to https://hyper.is/#cfg 141 | }, 142 | 143 | // a list of plugins to fetch and install from npm 144 | // format: [@org/]project[#version] 145 | // examples: 146 | // `hyperpower` 147 | // `@company/project` 148 | // `project#1.0.1` 149 | plugins: ["hyper-dracula"], 150 | 151 | // in development, you can create a directory under 152 | // `~/.hyper_plugins/local/` and include it here 153 | // to load it and avoid it being `npm install`ed 154 | localPlugins: [], 155 | 156 | keymaps: { 157 | // Example 158 | // 'window:devtools': 'cmd+alt+o', 159 | } 160 | }; 161 | -------------------------------------------------------------------------------- /PauloPinheiro/vscode_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "breadcrumbs.enabled": true, 3 | "editor.fontFamily": "Fira Code", 4 | "editor.fontLigatures": true, 5 | "editor.fontSize": 14, 6 | "editor.formatOnSave": true, 7 | "editor.lineHeight": 24, 8 | "editor.parameterHints.enabled": false, 9 | "editor.renderLineHighlight": "gutter", 10 | "editor.rulers": [80, 120], 11 | "editor.tabSize": 2, 12 | "emmet.includeLanguages": { 13 | "javascript": "javascriptreact" 14 | }, 15 | "emmet.syntaxProfiles": { 16 | "javascript": "jsx" 17 | }, 18 | "eslint.alwaysShowStatus": true, 19 | "eslint.autoFixOnSave": true, 20 | "javascript.format.enable": false, 21 | "javascript.updateImportsOnFileMove.enabled": "never", 22 | "material-icon-theme.folders.theme": "specific", 23 | "prettier.eslintIntegration": true, 24 | "terminal.integrated.fontSize": 14, 25 | "workbench.iconTheme": "material-icon-theme", 26 | "editor.suggestSelection": "first", 27 | "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", 28 | "workbench.colorTheme": "Dracula Soft", 29 | "explorer.confirmDelete": false, 30 | "terminal.explorerKind": "external", 31 | "git.enableSmartCommit": true, 32 | "explorer.confirmDragAndDrop": false 33 | } 34 | -------------------------------------------------------------------------------- /PauloPinheiro/zshrc.sh: -------------------------------------------------------------------------------- 1 | # If you come from bash you might have to change your $PATH. 2 | # export PATH=$HOME/bin:/usr/local/bin:$PATH 3 | 4 | # Path to your oh-my-zsh installation. 5 | export ZSH="/home/paulopinheiro/.oh-my-zsh" 6 | 7 | # Set name of the theme to load --- if set to "random", it will 8 | # load a random theme each time oh-my-zsh is loaded, in which case, 9 | # to know which specific one was loaded, run: echo $RANDOM_THEME 10 | # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes 11 | ZSH_THEME="spaceship" 12 | 13 | # Set list of themes to pick from when loading at random 14 | # Setting this variable when ZSH_THEME=random will cause zsh to load 15 | # a theme from this variable instead of looking in ~/.oh-my-zsh/themes/ 16 | # If set to an empty array, this variable will have no effect. 17 | # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) 18 | 19 | # Uncomment the following line to use case-sensitive completion. 20 | # CASE_SENSITIVE="true" 21 | 22 | # Uncomment the following line to use hyphen-insensitive completion. 23 | # Case-sensitive completion must be off. _ and - will be interchangeable. 24 | # HYPHEN_INSENSITIVE="true" 25 | 26 | # Uncomment the following line to disable bi-weekly auto-update checks. 27 | # DISABLE_AUTO_UPDATE="true" 28 | 29 | # Uncomment the following line to change how often to auto-update (in days). 30 | # export UPDATE_ZSH_DAYS=13 31 | 32 | # Uncomment the following line to disable colors in ls. 33 | # DISABLE_LS_COLORS="true" 34 | 35 | # Uncomment the following line to disable auto-setting terminal title. 36 | # DISABLE_AUTO_TITLE="true" 37 | 38 | # Uncomment the following line to enable command auto-correction. 39 | # ENABLE_CORRECTION="true" 40 | 41 | # Uncomment the following line to display red dots whilst waiting for completion. 42 | # COMPLETION_WAITING_DOTS="true" 43 | 44 | # Uncomment the following line if you want to disable marking untracked files 45 | # under VCS as dirty. This makes repository status check for large repositories 46 | # much, much faster. 47 | # DISABLE_UNTRACKED_FILES_DIRTY="true" 48 | 49 | # Uncomment the following line if you want to change the command execution time 50 | # stamp shown in the history command output. 51 | # You can set one of the optional three formats: 52 | # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" 53 | # or set a custom format using the strftime function format specifications, 54 | # see 'man strftime' for details. 55 | # HIST_STAMPS="mm/dd/yyyy" 56 | 57 | # Would you like to use another custom folder than $ZSH/custom? 58 | # ZSH_CUSTOM=/path/to/new-custom-folder 59 | 60 | # Which plugins would you like to load? 61 | # Standard plugins can be found in ~/.oh-my-zsh/plugins/* 62 | # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ 63 | # Example format: plugins=(rails git textmate ruby lighthouse) 64 | # Add wisely, as too many plugins slow down shell startup. 65 | plugins=(git) 66 | 67 | source $ZSH/oh-my-zsh.sh 68 | 69 | # User configuration 70 | 71 | # export MANPATH="/usr/local/man:$MANPATH" 72 | 73 | # You may need to manually set your language environment 74 | # export LANG=en_US.UTF-8 75 | 76 | # Preferred editor for local and remote sessions 77 | # if [[ -n $SSH_CONNECTION ]]; then 78 | # export EDITOR='vim' 79 | # else 80 | # export EDITOR='mvim' 81 | # fi 82 | 83 | # Compilation flags 84 | # export ARCHFLAGS="-arch x86_64" 85 | 86 | # Set personal aliases, overriding those provided by oh-my-zsh libs, 87 | # plugins, and themes. Aliases can be placed here, though oh-my-zsh 88 | # users are encouraged to define aliases within the ZSH_CUSTOM folder. 89 | # For a full list of active aliases, run `alias`. 90 | # 91 | # Example aliases 92 | # alias zshconfig="mate ~/.zshrc" 93 | # alias ohmyzsh="mate ~/.oh-my-zsh" 94 | 95 | SPACESHIP_PROMPT_ORDER=( 96 | user # Username section 97 | dir # Current directory section 98 | host # Hostname section 99 | git # Git section (git_branch + git_status) 100 | hg # Mercurial section (hg_branch + hg_status) 101 | exec_time # Execution time 102 | line_sep # Line break 103 | vi_mode # Vi-mode indicator 104 | jobs # Background jobs indicator 105 | exit_code # Exit code section 106 | char # Prompt character 107 | ) 108 | SPACESHIP_USER_SHOW=always 109 | SPACESHIP_PROMPT_ADD_NEWLINE=false 110 | SPACESHIP_CHAR_SYMBOL="❯" 111 | SPACESHIP_CHAR_SUFFIX=" " 112 | 113 | ### Added by Zplugin's installer 114 | source '/home/paulopinheiro/.zplugin/bin/zplugin.zsh' 115 | autoload -Uz _zplugin 116 | (( ${+_comps} )) && _comps[zplugin]=_zplugin 117 | ### End of Zplugin's installer chunk 118 | 119 | zplugin light zdharma/fast-syntax-highlighting 120 | zplugin light zsh-users/zsh-autosuggestions 121 | zplugin light zsh-users/zsh-history-substring-search 122 | zplugin light zsh-users/zsh-completions 123 | zplugin light buonomo/yarn-completion 124 | -------------------------------------------------------------------------------- /descricao_das_extensoes_e_plugins_do_vs-code.md: -------------------------------------------------------------------------------- 1 | ### Fira Code 2 | 3 | Fonte que o Marco Bruno usa. 4 | Para ativar todas as funcionalidades deve colocar essas opções nas configurações do vs code 5 | 6 | { 7 | "editor.fontFamily": "Fira Code", 8 | "editor.fontLigatures": true, 9 | } 10 | 11 | ### Vulgocode Color Theme 12 | 13 | Temas que o Marco Bruno usa. 14 | 15 | ![alt](https://i.imgur.com/7Bglkox.png) 16 | 17 | ### Color Highlight 18 | 19 | Esta extensão mostra as cores que estão no formato hexadecimal e rgb em todos os arquivos. 20 | 21 | ### vscode-icons 22 | 23 | Tema de ícones que o Marco Bruno usa. 24 | 25 | ![alt](https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/images/screenshot.gif) 26 | 27 | ### Bracket Pair Colorizer 28 | 29 | Essa extensão permite que os colchetes, chaves e os parênteses, correspondentes sejam identificados com cores. 30 | 31 | ![alt](https://raw.githubusercontent.com/CoenraadS/BracketPair/master/images/example.png) 32 | 33 | ### Discord Presence 34 | 35 | Extensão que, quando você estiver com o App do Discord aberto e utilizando o VsCode, ele vai mostrar no seu discord um status "Jogando Visual Studio Code". 36 | 37 | ### ESLint 38 | 39 | Integra o ESLint JavaScript no código VS. 40 | 41 | ### Live Server 42 | 43 | Lançar um servidor local de desenvolvimento com recurso de recarga ao vivo para páginas estáticas e dinâmicas 44 | 45 | ![alt](https://raw.githubusercontent.com/ritwickdey/vscode-live-server/master/images/Screenshot/vscode-live-server-animated-demo.gif) 46 | 47 | ### Twitch Highlighter 48 | 49 | Permita que os espectadores do Twitch ajudem a identificar erros, enviando um comando no bate-papo que destacará a linha de código que você deseja verificar. 50 | 51 | ![alt](https://raw.githubusercontent.com/clarkio/vscode-twitch-highlighter/master/resources/intro-vid.gif) 52 | 53 | ### vscode-styled-components 54 | 55 | Para quem usa o styled components, essa extensão ativa o Syntax highlighting. 56 | 57 | ### Reactjs Code Snippets 58 | 59 | Coleção de snippets (atalhos) que vão facilitar sua vida na hora de utilizar ReactJS. Como no gif de exemplo. 60 | 61 | ![alt rcc](https://raw.githubusercontent.com/xabikos/vscode-react/master/images/component.gif) 62 | 63 | -------------------------------------------------------------------------------- /vscode-plugins-themes.md: -------------------------------------------------------------------------------- 1 | - [Font FiraCode](https://github.com/tonsky/FiraCode) 2 | 3 | - [Vulgocode Color Theme](https://marketplace.visualstudio.com/items?itemName=alexandreramos.vulgocode-color-theme) 4 | 5 | - [Color Highlight](https://marketplace.visualstudio.com/items?itemName=naumovs.color-highlight) 6 | 7 | - [vscode-styled-components](https://marketplace.visualstudio.com/items?itemName=jpoissonnier.vscode-styled-components) 8 | 9 | - [styled-components-snippets](https://marketplace.visualstudio.com/items?itemName=jonkwheeler.styled-components-snippets) --------------------------------------------------------------------------------