Created
July 24, 2017 15:55
-
-
Save fungiboletus/570dc50a02e44d3a9bf8e559eb5bd05b to your computer and use it in GitHub Desktop.
Visual Studio Code - Vim - BÉPO
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 | |
{ | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"window.menuBarVisibility": "toggle", | |
"vim.useCtrlKeys": true, | |
"vim.handleKeys": { | |
"<C-a>": false, | |
"<C-f>": false, | |
"<C-z>": false, | |
"<C-w>": false, | |
"<C-c>": false, | |
"<C-v>": false, | |
"<C-x>": false | |
}, | |
"vim.statusBarColorControl": true, | |
"vim.statusBarColors" : { | |
"normal": "#005f5f", | |
"insert": "#5f0000", | |
"visual": "#5f00af", | |
"visualline": "#005f87", | |
"visualblock": "#86592d", | |
"replace": "#000000" | |
}, | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": ["é"], | |
"after": ["w"] | |
}, | |
{ | |
"before": ["É"], | |
"after": ["W"] | |
}, | |
{ | |
"before": ["t"], | |
"after": ["h"] | |
}, | |
{ | |
"before": ["n"], | |
"after": ["l"] | |
}, | |
{ | |
"before": ["s"], | |
"after": ["j"] | |
}, | |
{ | |
"before": ["r"], | |
"after": ["k"] | |
}, | |
{ | |
"before": ["T"], | |
"after": ["H"] | |
}, | |
{ | |
"before": ["N"], | |
"after": ["L"] | |
}, | |
{ | |
"before": ["S"], | |
"after": ["J"] | |
}, | |
{ | |
"before": ["R"], | |
"after": ["K"] | |
}, | |
{ | |
"before": ["j"], | |
"after": ["s"] | |
}, | |
{ | |
"before": ["J"], | |
"after": ["S"] | |
}, | |
{ | |
"before": ["l"], | |
"after": ["t"] | |
}, | |
{ | |
"before": ["T"], | |
"after": ["T"] | |
}, | |
{ | |
"before": ["h"], | |
"after": ["n"] | |
}, | |
{ | |
"before": ["H"], | |
"after": ["N"] | |
}, | |
{ | |
"before": ["k"], | |
"after": ["r"] | |
}, | |
{ | |
"before": ["K"], | |
"after": ["R"] | |
}, | |
{ | |
"before": ["<C-_>"], | |
"after": ["g", "B"] | |
/*"commands": [ | |
{"command": "editor.action.commentLine"} | |
]*/ | |
} | |
], | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#005f5f", | |
"statusBar.noFolderBackground": "#005f5f", | |
"statusBar.debuggingBackground": "#005f5f" | |
}, | |
"vim.disableAnnoyingNeovimMessage": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment