Last active
March 2, 2023 12:39
-
-
Save ericdouglas/acfb61874a51330c6eb1b90347d84cfb to your computer and use it in GitHub Desktop.
VSCode User Settings
This file contains 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
{ | |
"workbench.colorTheme": "vaporwave *bold*", | |
"workbench.iconTheme": "file-icons", | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["k", "j"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": ["U"], | |
"commands": ["extension.vim_ctrl+r"] | |
} | |
], | |
"vim.handleKeys": { | |
"<C-d>": false | |
}, | |
"vim.useSystemClipboard": true, | |
"files.exclude": { | |
"/.git": true, | |
"/.DS_Store": true, | |
"/node_modules": true, | |
"/node_modules/": true | |
}, | |
"search.exclude": { | |
"/node_modules": true | |
}, | |
"files.watcherExclude": { | |
"/node_modules/": true | |
}, | |
"explorer.confirmDelete": false, | |
"editor.multiCursorModifier": "alt", | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Jetbrains Mono", | |
"editor.tabSize": 2, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"todo-tree.highlights.enabled": true, | |
"eslint.lintTask.options": "-c .eslintrc.json --ignore-path .eslintignore .", | |
"editor.rulers": [80, 100], | |
"editor.fontSize": 16, | |
"editor.columnSelection": false, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.includeLanguages": { | |
"elixir": "html", | |
"javascript": "javascriptreact", | |
"phoenix-heex": "html" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"terminal.integrated.fontFamily": "Monaco", | |
"terminal.integrated.fontSize": 16, | |
"files.associations": { | |
"*.erl": "erlang", | |
"*.heex": "phoenix-heex" | |
}, | |
"javascript.preferences.quoteStyle": "single", | |
"typescript.preferences.quoteStyle": "single", | |
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, | |
"prettier.semi": false, | |
"prettier.arrowParens": "avoid", | |
"prettier.singleQuote": true, | |
"prettier.jsxSingleQuote": true, | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.inlineSuggest.enabled": true, | |
"git.openRepositoryInParentFolders": "never", | |
"[elixir]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "JakeBecker.elixir-ls" | |
}, | |
"[phoenix-heex]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "JakeBecker.elixir-ls" | |
}, | |
"elixirLS.suggestSpecs": false, | |
"elixirLS.dialyzerEnabled": true, | |
"elixirLS.signatureAfterComplete": false, | |
"elixirLS.fetchDeps": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment