Last active
June 3, 2021 05:39
-
-
Save hyochan/815e9040593180c4725d7694d863e5a1 to your computer and use it in GitHub Desktop.
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
{ | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"javascript.validate.enable": false, | |
"window.zoomLevel": 1, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"editor.fontSize": 13, | |
"editor.suggestSelection": "first", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"eslint.format.enable": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"javascript.preferences.importModuleSpecifier": "relative", | |
"typescript.preferences.importModuleSpecifier": "relative", | |
"workbench.activityBar.visible": true, | |
"gitlens.gitCommands.closeOnFocusOut": true, | |
"editor.semanticHighlighting.enabled": false | |
} |
Author
hyochan
commented
Sep 7, 2019
•
For ubuntu or window.
{
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"javascript.validate.enable": false,
"window.zoomLevel": 1,
"typescript.updateImportsOnFileMove.enabled": "never",
"editor.fontSize": 13,
"editor.suggestSelection": "first",
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)",
"terminal.external.windowsExec": "C:\\WINDOWS\\System32\\wsl.exe",
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative",
"workbench.activityBar.visible": true,
"gitlens.gitCommands.closeOnFocusOut": true,
"editor.semanticHighlighting.enabled": false,
"vim.handleKeys": {
"<C-p>": false,
"<C-c>": false,
"<C-d>": false,
"<C-x>": false,
"<C-n>": false,
"<C-w>": false,
"<C-f>": false,
"<C-b>": false,
"<C-k>": false,
"<C-a>": false,
"<C-s>": false,
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment