Skip to content

Instantly share code, notes, and snippets.

@jwrigh26
Created March 13, 2020 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwrigh26/e8e1fc0c1c80f7eda147c474a334f7cb to your computer and use it in GitHub Desktop.
Save jwrigh26/e8e1fc0c1c80f7eda147c474a334f7cb to your computer and use it in GitHub Desktop.
{
"breadcrumbs.enabled": true,
"editor.tabSize": 2,
"eslint.packageManager": "yarn",
"files.autoSave": "onFocusChange",
"javascript.format.enable": false,
// "editor.lineNumbers": "relative",
"editor.formatOnSave": false,
"eslint.autoFixOnSave": true,
// Set the default
// Enable per-language
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// "editor.codeActionsOnSave": {
// "source.fixAll.eslint": true
// },
"window.menuBarVisibility": "toggle",
"javascript.updateImportsOnFileMove.enabled": "never",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"window.zoomLevel": 1,
"terminal.integrated.shellArgs.linux": [
"-l"
],
"files.associations": {
".eslintrc": "jsonc"
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
},
"files.exclude": {
"**/node_modules": true
},
"workbench.iconTheme": "material-icon-theme",
"vsicons.dontShowNewVersionMessage": true,
"editor.fontSize": 13,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.colorTheme": "Gruvbox Dark Hard",
// "workbench.colorCustomizations": {
// "titleBar.border": "#09151d",
// "list.activeSelectionBackground": "#09151d",
// "list.inactiveSelectionBackground": "#09151d",
// "tab.inactiveBackground": "#153041",
// "editorGroupHeader.tabsBackground": "#09151d",
// "editorGroupHeader.noTabsBackground": "#09151d",
// "activityBar.background": "#09151d",
// "sideBar.background": "#0f1b24",
// "sideBarSectionHeader.background": "#09151d",
// "activityBar.border": "#09151d",
// "tab.border": "#09151d",
// "tab.unfocusedActiveBackground": "#09151d",
// "panel.border": "#09151d",
// "statusBar.border": "#09151d",
// "editor.background": "#09151d"
// },
"vim.easymotion": true,
"vim.history": 50,
"vim.incsearch": true,
"vim.sneak": true,
"vim.showcmd": true,
"vim.leader": "<space>",
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.overrideCopy": true,
"vim.surround": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<C-n>"
],
"commands": [
":nohl",
]
},
{
"before": [
"leader",
"w"
],
"commands": [
"workbench.action.files.save",
]
}
],
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"keyboard.dispatch": "keyCode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment