Skip to content

Instantly share code, notes, and snippets.

@ramidem
Last active January 31, 2019 16:31
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 ramidem/9dff5de05fb76eaf9f22409be8d94b8d to your computer and use it in GitHub Desktop.
Save ramidem/9dff5de05fb76eaf9f22409be8d94b8d to your computer and use it in GitHub Desktop.
My VS Code user settings in JSON
{
"workbench.sideBar.location": "left",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Dracula Soft",
"editor.fontFamily": "'Fira Code', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 12,
"editor.fontLigatures": true,
"editor.lineNumbers": "relative",
"editor.minimap.enabled": false,
"[python]": {
"editor.rulers": [
79,
120
]
},
"window.zoomLevel": -0.5,
"terminal.integrated.fontSize": 12,
"vim.hlsearch": true,
"vim.leader": "<space>",
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<leader>",
"w"
],
"commands": [
":w"
]
},
{
"before": [
"<leader>",
"q"
],
"commands": [
":q"
]
},
{
"before": [
"<leader>",
"e"
],
"commands": [
":wq"
]
}
],
"workbench.activityBar.visible": false,
"terminal.integrated.copyOnSelection": true,
"editor.tabSize": 2,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.editor.showTabs": true,
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment