Last active
August 28, 2018 11:25
-
-
Save jon-grangien/e411565d59303cf589f44b826d954917 to your computer and use it in GitHub Desktop.
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.colorTheme": "Gruvbox Dark (Hard)", | |
"window.zoomLevel": 1, | |
"editor.tabSize": 2, | |
"editor.fontFamily": "'Fira Code','Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontLigatures": true, | |
"vim.hlsearch": true, | |
"vim.easymotion": true, | |
"vim.statusBarColorControl": true, | |
"vim.statusBarColors": {"normal": "#1d2021", "insert": "#252526"}, | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": ["j"], | |
"after": ["g","j"] | |
}, | |
{ | |
"before": ["k"], | |
"after": ["g","k"] | |
} | |
], | |
"files.associations": { | |
"*.cfg": "lua", | |
"*.scene": "lua", | |
"*.asset": "lua", | |
"*.task": "lua" | |
}, | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#005f5f", | |
"statusBar.noFolderBackground": "#005f5f", | |
"statusBar.debuggingBackground": "#005f5f" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment