Skip to content

Instantly share code, notes, and snippets.

@ShawnRong
Last active November 15, 2017 08:22
Show Gist options
  • Save ShawnRong/43d50a19da647507fd2a13b1c916502d to your computer and use it in GitHub Desktop.
Save ShawnRong/43d50a19da647507fd2a13b1c916502d to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.tabSize": 2,
"workbench.colorCustomizations": {
"statusBar.background": "#005f87",
"statusBar.noFolderBackground": "#005f87",
"statusBar.debuggingBackground": "#005f87"
},
"vim.enableNeovim": true,
"workbench.colorTheme": "Cobalt2",
"workbench.panel.location": "right",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.lineHeight": 19,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
// "prettier.eslintIntegration": true,
// this isn't really underline-thin but we hack it to be a thicker cursor
// "editor.cursorStyle": "underline-thin",
// "editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all",
//vim settings
"vim.insertModeKeyBindings": [
{
"before": ["j","j"],
"after": ["<Esc>"]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": ["<leader>","d"],
"after": ["d", "d"]
},
{
"before":["<C-n>"],
"after":[],
"commands": [
{
"command": ":nohl"
}
]
}
],
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.statusBarColorControl": true,
"vim.statusBarColors" : {
"normal": "#005f5f",
"insert": "#5f0000",
"visual": "#5f00af",
"visualline": "#005f87",
"visualblock": "#86592d",
"replace": "#000000"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment