Skip to content

Instantly share code, notes, and snippets.

@dnavas77
Last active March 26, 2021 01:07
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 dnavas77/b5fb8962ee3298b98d2acd68ba2367e4 to your computer and use it in GitHub Desktop.
Save dnavas77/b5fb8962ee3298b98d2acd68ba2367e4 to your computer and use it in GitHub Desktop.
{
"workbench.startupEditor": "none",
"extensions.ignoreRecommendations": true,
"editor.fontSize": 15,
"editor.fontFamily": "Consolas",
// "editor.fontSize": 17,
// "editor.fontFamily": "Ubuntu Mono Regular",
"editor.lineHeight": 20,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"update.showReleaseNotes": false,
"update.enableWindowsBackgroundUpdates": false,
"explorer.openEditors.visible": 0,
"workbench.tree.indent": 20,
"files.exclude": {
"*/**/node_modules/": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"[git-commit]": {
"editor.rulers": [
75
],
"workbench.editor.restoreViewState": false
},
"editor.rulers": [
100
],
"workbench.editor.enablePreview": false,
"breadcrumbs.enabled": false,
"vim.cursorStylePerMode.insert": "line",
"vim.cursorStylePerMode.normal": "block",
"vim.cursorStylePerMode.visual": "block",
"vim.cursorStylePerMode.visualblock": "block",
"vim.cursorStylePerMode.visualline": "block",
"vim.easymotion": true,
"vim.useSystemClipboard": true,
"vim.leader": " ",
"vim.handleKeys": {
"<C-a>": false,
"<C-c>": true,
"<C-v>": false,
"<C-y>": false,
"<C-x>": false,
"<C-f>": false,
"<C-d>": true,
"<C-u>": true,
"<C-b>": false ,
"<C-n>": true
},
"vim.insertModeKeyBindings": [
{
"before": ["i", "i"],
"after": ["<Esc>"]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["i", "i"],
"after": ["<Esc>"]
},
{
"before": ["<leader>", "s"],
"commands": [
"workbench.action.files.save"
]
},
{
"before": ["<C-m>"],
"commands": [
"workbench.action.nextEditor"
]
},
{
"before": ["<C-n>"],
"commands": [
"workbench.action.previousEditor"
]
},
{
"before": ["<leader>", "n"],
"commands": [
"workbench.action.files.newUntitledFile"
]
},
{
"before": ["<leader>", "w"],
"commands": [
"workbench.action.closeActiveEditor"
]
},
{
"before": ["f"],
"after": ["leader", "leader", "2", "s"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "s"],
"commands": [
"workbench.action.files.save"
]
},
{
"before": ["<C-m>"],
"commands": [
"workbench.action.nextEditor"
]
},
{
"before": ["<C-n>"],
"commands": [
"workbench.action.previousEditor"
]
},
{
"before": ["<leader>", "n"],
"commands": [
"workbench.action.files.newUntitledFile"
]
},
{
"before": ["<leader>", "w"],
"commands": [
"workbench.action.closeActiveEditor"
]
},
{
"before": ["f"],
"after": ["leader", "leader", "2", "s"]
}
],
"todohighlight.include": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"**/*.html",
"**/*.php",
"**/*.css",
"**/*.scss",
"**/*.java",
"**/*.cpp"
],
"todohighlight.exclude": [
"**/node_modules/**",
"**/bower_components/**",
"**/dist/**",
"**/build/**",
"**/.vscode/**",
"**/.github/**",
"**/_output/**",
"**/*.min.*",
"**/*.map",
"**/.next/**"
],
"editor.folding": false,
"editor.minimap.maxColumn": 100,
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"workbench.sideBar.location": "right",
"editor.minimap.enabled": false,
"editor.renderControlCharacters": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.codeLens": false,
"workbench.activityBar.visible": true,
"editor.renderIndentGuides": true,
"editor.lineNumbers": "on",
"workbench.editor.pinnedTabSizing": "shrink",
"editor.multiCursorModifier": "ctrlCmd",
"workbench.colorCustomizations": {
"[Nord]": {
"activityBar.background": "#3b4252",
"activityBarBadge.background": "#81a1c1",
"activityBarBadge.foreground": "#eceff4",
},
"[Default Light+]": {
"activityBar.background": "#ffffff",
"activityBar.foreground": "#000000",
}
},
"editor.tokenColorCustomizations": {
"[Nord]": {
// Use a 10% brigher foreground color for all comments.
"comments": "#7b88a1",
"textMateRules": [
{
// Also use `nord9` as comma foreground color for Go syntax.
"scope": "punctuation.other.comma.go",
"settings": {
"foreground": "#81a1c1"
}
}
],
},
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.allowChords": false,
"workbench.colorTheme": "Nord",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment