Created
April 4, 2022 19:07
-
-
Save davecarter/f8180f3ae1287fe8cedb6c13d00720c0 to your computer and use it in GitHub Desktop.
VSCode Settings Linux
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
{ | |
"explorer.confirmDelete": false, | |
"css.validate": true, | |
"less.validate": false, | |
"scss.validate": false, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[postcss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
"source.fixAll.tslint": true, | |
"source.fixAll.stylelint": true | |
}, | |
"editor.formatOnSave": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"editor.minimap.enabled": false, | |
"editor.suggestSelection": "first", | |
"explorer.confirmDragAndDrop": false, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontWeight": "400", | |
"workbench.colorTheme": "Monokai", | |
"files.associations": { | |
"*.mdx": "markdown", | |
"*.css": "postcss" | |
}, | |
"workbench.editor.untitled.hint": "hidden", | |
"editor.tabSize": 2, | |
"terminal.integrated.tabs.enabled": false, | |
"window.zoomLevel": 1, | |
"editor.hover.delay": 3000, | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"terminal.integrated.profiles.linux": { | |
"bash": { | |
"path": "bash", | |
"icon": "terminal-bash" | |
}, | |
"zsh": { | |
"path": "zsh" | |
}, | |
"fish": { | |
"path": "fish" | |
}, | |
"tmux": { | |
"path": "tmux", | |
"icon": "terminal-tmux" | |
}, | |
"pwsh": { | |
"path": "pwsh", | |
"icon": "terminal-powershell" | |
}, | |
"sh": { | |
"path": "/bin/sh" | |
} | |
}, | |
"eslint.format.enable": true, | |
"prettier.semi": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment