Last active
February 27, 2019 04:03
-
-
Save Jimmydalecleveland/f68f4c7d7caee74f5df7094dcb319500 to your computer and use it in GitHub Desktop.
vscode workspace 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
{ | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"workbench.iconTheme": "eq-material-theme-icons", | |
"workbench.colorTheme": "City Lights", | |
"materialTheme.fixIconsRunning": false, | |
"editor.fontSize": 18, | |
"editor.tabSize": 2, | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"editor.wordWrap": "on", | |
"editor.minimap.enabled": false, | |
"editor.smoothScrolling": true, | |
"editor.lineHeight": 30, | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "es5", | |
"prettier.eslintIntegration": true, | |
"emmet.preferences": { | |
"stylus.valueSeparator": ": " | |
}, | |
"emmet.includeLanguages": { | |
"liquid": "html", | |
"javascript": "javascriptreact" | |
}, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.formatOnPaste": true, | |
"workbench.statusBar.feedback.visible": false, | |
"gitlens.historyExplorer.enabled": true, | |
"editor.fontFamily": "'Input Mono', 'Droid Sans Fallback'", | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"vim.statusBarColorControl": true, | |
"vim.statusBarColors": { | |
"normal": [ | |
"#2c3e50", | |
"#dddddd" | |
], | |
"insert": [ | |
"#49708A", | |
"#ffffff" | |
], | |
"visual": [ | |
"#88ABC2", | |
"#2c3e50" | |
] | |
}, | |
"vim.handleKeys": { | |
"<C-d>": false | |
}, | |
"vim.useSystemClipboard": true, | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<C-j>"], | |
"commands": ["editor.action.moveLinesDownAction"] | |
}, | |
{ | |
"before": ["<C-k>"], | |
"commands": ["editor.action.moveLinesUpAction"] | |
} | |
], | |
"vim.visualModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<C-j>"], | |
"commands": ["editor.action.moveLinesDownAction"] | |
}, | |
{ | |
"before": ["<C-k>"], | |
"commands": ["editor.action.moveLinesUpAction"] | |
} | |
], | |
"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