Created
June 14, 2018 09:56
-
-
Save lurimendes/86c17c2a4fb26591a34320392cd7a0c8 to your computer and use it in GitHub Desktop.
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"vim.easymotion": true, | |
"vim.easymotionMarkerBackgroundColor": "#F9B42A", | |
"vim.easymotionMarkerHeight": "20", | |
"vim.easymotionMarkerYOffset": -1, | |
"vim.hlsearch": true, | |
"vim.leader": ",", | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j","k"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<leader>", "w"], | |
"after": ["<leader>", "<leader>", "w"], | |
}, | |
{ | |
"before": ["<leader>", "b"], | |
"after": ["<leader>", "<leader>", "b"], | |
}, | |
], | |
// Controls the font family. | |
"editor.fontFamily": "Operator Mono Lig, Consolas, Inconsolata, Source Code Pro, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
// Controls the font size in pixels. | |
"editor.fontSize": 13, | |
"vim.disableAnnoyingNeovimMessage": true, | |
"window.zoomLevel": 0, | |
"editor.renderIndentGuides": true, | |
"editor.lineNumbers": "relative", | |
"materialTheme.cache.workbench.settings": { | |
"themeColours": "Palenight" | |
}, | |
"workbench.panel.location": "bottom", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
}, | |
"git.autofetch": true, | |
"editor.tabSize": 2, | |
"explorer.confirmDragAndDrop": false, | |
"workbench.colorTheme": "Material Theme Ocean", | |
"workbench.iconTheme": "eq-material-theme-icons-ocean", | |
"materialTheme.fixIconsRunning": false, | |
"workbench.sideBar.location": "right", | |
"editor.minimap.enabled": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment