Skip to content

Instantly share code, notes, and snippets.

@SakiiR
Created April 16, 2020 13:46
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 SakiiR/e75ae056f73da23428973aaea3a7b1da to your computer and use it in GitHub Desktop.
Save SakiiR/e75ae056f73da23428973aaea3a7b1da to your computer and use it in GitHub Desktop.
Visual Studio Code - Configuration
{
"editor.tabCompletion": "on",
"workbench.useExperimentalGridLayout": true,
"editor.cursorStyle": "line-thin",
"files.autoSave": "onWindowChange",
"explorer.confirmDelete": false,
"vim.useSystemClipboard": true,
"terminal.integrated.fontFamily": "Monofur Nerd Font",
"editor.fontFamily": "Monofur Nerd Font",
"editor.fontLigatures": true,
"python.formatting.provider": "black",
"editor.suggestSelection": "first",
"python.jediEnabled": false,
"terminal.integrated.shell.linux": "/bin/zsh",
"terminal.integrated.shell.osx": "/bin/zsh",
"window.zoomLevel": 0,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"vim.easymotion": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<C-j>"
],
"after": [
"}"
]
},
{
"before": [
"<C-k>"
],
"after": [
"{"
]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
"<C-j>"
],
"after": [
"}"
]
},
{
"before": [
"<C-k>"
],
"after": [
"{"
]
}
],
"editor.largeFileOptimizations": false,
"editor.renderWhitespace": "none",
"vim.leader": ";",
"workbench.startupEditor": "none",
"editor.find.addExtraSpaceOnTop": false,
"editor.formatOnSave": true,
"workbench.colorTheme": "Gruvbox Material Dark",
"workbench.iconTheme": "helium-icon-theme",
"customizeUI.activityBar": "bottom",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.activityBar.visible": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"sync.autoUpload": true,
"sync.forceUpload": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment