Last active
January 31, 2019 16:31
-
-
Save ramidem/9dff5de05fb76eaf9f22409be8d94b8d to your computer and use it in GitHub Desktop.
My VS Code user settings in JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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