Skip to content

Instantly share code, notes, and snippets.

@kristianmitk
Last active April 17, 2020 11:43
Show Gist options
  • Save kristianmitk/d3d2d3d0627d19d256d576ed562fe797 to your computer and use it in GitHub Desktop.
Save kristianmitk/d3d2d3d0627d19d256d576ed562fe797 to your computer and use it in GitHub Desktop.
custom vscode settings
{
"vim.statusBarColorControl": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
">"
],
"commands": [
"editor.action.indentLines"
]
},
{
"before": [
"<"
],
"commands": [
"editor.action.outdentLines"
]
},
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
},
"window.zoomLevel": 1,
"editor.renderControlCharacters": false,
"material-icon-theme.folders.theme": "specific",
"editor.rulers": [
80,
],
"[go]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
},
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.tabSize": 2,
},
"[typescript]": {
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
},
"[scala]": {
"editor.formatOnType": false,
"editor.formatOnSave": true,
"editor.tabSize": 2,
},
"[rust]": {
"editor.formatOnType": false,
"editor.formatOnSave": true
},
"[cpp]": {
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"workbench.activityBar.visible": true,
"workbench.tree.indent": 4,
"breadcrumbs.enabled": true,
"workbench.editor.tabSizing": "shrink",
"workbench.sideBar.location": "left",
"workbench.editor.highlightModifiedTabs": true,
"editor.minimap.maxColumn": 40,
"editor.minimap.renderCharacters": false,
"editor.minimap.enabled": false,
"editor.fontFamily": "Hack",
"workbench.statusBar.visible": true,
"workbench.editor.showTabs": true,
"workbench.iconTheme": "eq-material-theme-icons",
"editor.largeFileOptimizations": false,
"latex-workshop.view.pdf.viewer": "tab",
"latex-workshop.latex.outDir": "%DIR%/build",
"workbench.colorTheme": "Monokai Vibrant Classic",
"editor.renderIndentGuides": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"shellcheck.executablePath": "",
"C_Cpp.default.cppStandard": "c++17",
"C_Cpp.default.cStandard": "c99",
"C_Cpp.clang_format_fallbackStyle": "Google",
"C_Cpp.errorSquiggles": "Enabled",
"C_Cpp.updateChannel": "Insiders",
"liveshare.featureSet": "insiders",
"C_Cpp.clang_format_path": "/usr/bin/clang-format",
"shellcheck.run": "onSave",
"shellcheck.enableQuickFix": true,
"shellcheck.customArgs": [
"-x"
],
"workbench.colorCustomizations": {
"statusBar.background": "#5f0000",
"statusBar.noFolderBackground": "#5f0000",
"statusBar.debuggingBackground": "#5f0000"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment