Last active
August 24, 2018 14:18
-
-
Save onixus74/88e45ea58dd876ee4c98015741e5cbd2 to your computer and use it in GitHub Desktop.
VSCode settings requires VIM extension
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
{ | |
"git.ignoreMissingGitWarning": true, | |
"workbench.colorTheme": "One Dark Pro", | |
"editor.fontFamily": "Hack", | |
"[elm]": { | |
"editor.formatOnSave": true | |
}, | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"j", | |
"k" | |
], | |
"after": [ | |
"Insert" | |
] | |
}, | |
], | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": [ | |
"j", | |
"j" | |
], | |
"after": [ | |
"<Esc>" | |
] | |
} | |
], | |
"vim.statusBarColorControl": true, | |
"vim.statusBarColors": { | |
"normal": [ | |
"#8FBCBB", | |
"#434C5E" | |
], | |
"insert": "#BF616A", | |
"visual": "#B48EAD", | |
"visualline": "#B48EAD", | |
"visualblock": "#A3BE8C", | |
"replace": "#D08770" | |
}, | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#B48EAD", | |
"statusBar.noFolderBackground": "#B48EAD", | |
"statusBar.debuggingBackground": "#B48EAD" | |
}, | |
"vim.easymotion": true, | |
"vim.easymotionKeys": "hklyuiopnmqwertzxcvbasdgjf", | |
"vim.leader": "<space>", | |
"vim.autoindent": true, | |
"vim.useSystemClipboard": true, | |
"window.zoomLevel": 1, | |
"window.menuBarVisibility": "toggle", | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"workbench.iconTheme": "vscode-icons", | |
"explorer.confirmDelete": false, | |
"kite.editorMetricsEnabled": "yes", | |
"msbuildProjectTools": { | |
"logging": { | |
"level": "Information", | |
"seq": {}, | |
"file": "", | |
"trace": false | |
}, | |
"language": { | |
"disableFeature": {}, | |
"useClassicProvider": false, | |
"disable": { | |
"hover": false | |
} | |
}, | |
"nuget": { | |
"newestVersionsFirst": true, | |
"includePreRelease": true, | |
"disablePrefetch": false | |
}, | |
"schemaVersion": 1 | |
}, | |
"python.jediEnabled": false, | |
"csharp.format.enable": false, | |
"emmet.includeLanguages": { | |
"razor": "html" | |
}, | |
"vsicons.dontShowNewVersionMessage": true, | |
"xmlTools.xmlFormatterImplementation": "v2", | |
"xmlTools.splitAttributesOnFormat": true, | |
"xmlTools.splitXmlnsOnFormat": true, | |
"[xml]": {}, | |
"cSpell.userWords": [ | |
"walkthrough", | |
"xmlfragment" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment