Skip to content

Instantly share code, notes, and snippets.

@nmsobri
Last active November 25, 2020 09:30
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 nmsobri/132b8fc6d8f2a419ac7012a588108799 to your computer and use it in GitHub Desktop.
Save nmsobri/132b8fc6d8f2a419ac7012a588108799 to your computer and use it in GitHub Desktop.
{
"editor.tabCompletion": "on",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.fontFamily": "CaskaydiaCove NF",
"explorer.confirmDelete": false,
"workbench.colorTheme": "Gruvbox Dark Soft",
"editor.fontFamily": "jetbrains Mono",
"editor.fontLigatures": true,
"editor.suggestSelection": "first",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"workbench.iconTheme": "vscode-icons",
"vim.timeout": 300,
"vim.leader": "<space>",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"k",
"j"
],
"after": [
"<Esc>"
]
},
{
"before": [
"<leader>",
"j"
],
"after": [
"i",
"a",
"<Esc>",
"x"
],
"commands": [
"editor.action.revealDefinition"
]
},
{
"before": [
"<leader>",
"k"
],
"commands": [
"workbench.action.navigateToLastEditLocation"
]
},
{
"before": [
"<C-j>"
],
"after": [
"<C-d>"
]
},
{
"before": [
"<C-k>"
],
"after": [
"<C-u>"
]
},
],
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": [
"k",
"j"
],
"after": [
"<Esc>"
]
},
{
"before": [
"k",
"l"
],
"after": [
"<Esc>",
"A"
]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
"k",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.vimrc.enable": false,
"vim.highlightedyank.enable": true,
"files.exclude": {
"**/.classpath": false,
"**/.project": false,
"**/.settings": false,
"**/.factorypath": false
},
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.enabled": false,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.list.openMode": "doubleClick",
"editor.lineHeight": 23,
"diffEditor.ignoreTrimWhitespace": true,
"editor.autoClosingQuotes": "always",
"workbench.sideBar.location": "right",
"editor.hover.delay": 50,
"editor.quickSuggestionsDelay": 1,
"editor.wordBasedSuggestions": true,
"editor.parameterHints.enabled": true,
"editor.renderWhitespace": "none",
"breadcrumbs.enabled": true,
"workbench.tree.indent": 10,
"editor.renderIndentGuides": false,
"workbench.tree.renderIndentGuides": "none",
"explorer.compactFolders": false,
"window.zoomLevel": 0,
"editor.detectIndentation": false,
"debug.onTaskErrors": "showErrors",
"explorer.confirmDragAndDrop": false,
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#2b292894",
"editor.wordHighlightBackground": "#00f",
},
"terminal.integrated.fontWeightBold": "500",
"terminal.integrated.fontWeight": "500",
"editor.fontWeight": "bold",
"vsicons.dontShowNewVersionMessage": true,
"go.formatTool": "goimports",
"go.vetFlags": [
"-all",
"-shadow"
],
"remote.WSL.fileWatcher.pollingInterval": 1000,
"terminal.integrated.shell.linux": "/bin/zsh",
"editor.columnSelection": false,
"go.autocompleteUnimportedPackages": true,
"go.lintTool": "revive",
"go.lintFlags": [
"--config=~/revive.toml"
],
"editor.cursorSurroundingLines": 15,
"editor.showFoldingControls": "always",
"editor.folding": true,
"editor.foldingStrategy": "auto",
"editor.foldingHighlight": false,
"window.menuBarVisibility": "default",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment