Created
April 26, 2020 15:18
-
-
Save moneal/fb9dd6f374d37e8867549ba17e573882 to your computer and use it in GitHub Desktop.
Windows version of VS Code settings
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
{ | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"window.menuBarVisibility": "visible", | |
"editor.fontSize": 18, | |
"window.zoomLevel": 0, | |
"editor.fontFamily": "'Cascadia Code', Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.rulers": [ | |
80, | |
120, | |
8, | |
16 | |
], | |
"files.exclude": { | |
"**/node_modules": true, | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true | |
}, | |
"workbench.colorCustomizations": { | |
"editorRuler.foreground": "#ff408070", | |
"activityBar.activeBorder": "#9c27b0", | |
"activityBar.activeBackground": "#9b27b044" | |
}, | |
"workbench.editor.labelFormat": "short", | |
"vim.handleKeys": { | |
"<C-c>": false, | |
"<C-a>": false, | |
"<C-x>": false, | |
"<C-f>": false | |
}, | |
"vim.camelCaseMotion.enable": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment