Skip to content

Instantly share code, notes, and snippets.

@nexusstar
Created February 19, 2018 19:57
Show Gist options
  • Save nexusstar/56b3c96cf0b5c939f9e537ba3a9bf08a to your computer and use it in GitHub Desktop.
Save nexusstar/56b3c96cf0b5c939f9e537ba3a9bf08a to your computer and use it in GitHub Desktop.
Visual Studio Code user settings
{
"editor.fontSize": 15,
"vim.leader": "\\",
"vim.enableNeovim": true,
"vim.neovimPath": "C:\\Program Files\\Neovim\\bin\\nvim.exe",
"vim.easymotion": true,
"vim.surround": true,
"vim.scroll": 20,
"vim.visualstar": true,
"vim.statusBarColorControl": true,
"vim.incsearch": true,
"vim.history": 1000,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.overrideCopy": true,
"vim.searchHighlightColor": "rgba(150, 150, 255, 0.5)",
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"<C-n>"
],
"after": [],
"commands": [
{
"command": ":nohl"
}
]
}
],
"vim.otherModesKeyBindings": [
{
"before": [
"-"
],
"after":[],
"commands": [
{
"command":"workbench.action.toggleSidebarVisibility"
}
]
}
],
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"workbench.colorTheme": "Oceanic Next"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment