Last active
March 23, 2020 09:41
-
-
Save ramidem/c46204ee872a5486339020db609b9224 to your computer and use it in GitHub Desktop.
VS Code Settings JSON file
This file contains 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": "right", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.fontFamily": "'Fira Code', monospace", | |
"editor.fontWeight": "600", | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, | |
"[python]": { | |
"editor.rulers": [ | |
79, | |
120 | |
] | |
}, | |
"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": false, | |
// "terminal.integrated.shell.windows": "C:\\WINDOWS\\sysnative\\bash.exe", | |
// "editor.lineNumbers": "relative", | |
"editor.lineNumbers": "off", | |
"breadcrumbs.enabled": true, | |
"editor.cursorBlinking": "smooth", | |
"vim.cursorStylePerMode.normal": "block", | |
"vim.cursorStylePerMode.insert": "line", | |
"vim.cursorStylePerMode.visual": "block", | |
"vim.cursorStylePerMode.visualblock": "block", | |
"vim.cursorStylePerMode.visualline": "block", | |
"editor.cursorStyle": "block", | |
"editor.parameterHints.enabled": false, | |
"window.zoomLevel": -0.5, | |
"editor.fontSize": 12.5, | |
"window.menuBarVisibility": "toggle", | |
"workbench.iconTheme": "material-icon-theme", | |
"vim.statusBarColorControl": true, | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#5f00af", | |
"statusBar.noFolderBackground": "#5f00af", | |
"statusBar.debuggingBackground": "#5f00af" | |
}, | |
"editor.formatOnSave": true, | |
"editor.folding": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment