Skip to content

Instantly share code, notes, and snippets.

@aeruhxi
Last active June 19, 2017 11:35
Show Gist options
  • Save aeruhxi/49d56de6a97006836fde57ec8900f01c to your computer and use it in GitHub Desktop.
Save aeruhxi/49d56de6a97006836fde57ec8900f01c to your computer and use it in GitHub Desktop.
vscode settings
// Place your settings in this file to overwrite the default settings
{
"javascript.format.enable": false,
"window.menuBarVisibility": "toggle",
"search.exclude": {
"**/node_modules": true,
"**/.git": true,
"**/bin": true
},
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
},
{
"before": [
"k",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"<C-u>"
],
"after": [
"2",
"0",
"k"
]
},
{
"before": [
"<C-d>"
],
"after": [
"2",
"0",
"j"
]
}
],
// Font
"editor.fontFamily": "Fira Code Medium",
"editor.fontLigatures": true,
"editor.fontSize": 13,
// editor
"editor.lineNumbers": "relative",
"editor.renderWhitespace": "none",
"editor.renderIndentGuides": true,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.rulers": [
80,
100
],
"prettier.singleQuote": true,
"prettier.semi": true,
//flow
"flow.runOnEdit": false,
"auto-close-tag.SublimeText3Mode": true,
"workbench.colorTheme": "Ayu Dark",
"workbench.colorCustomizations": {
"editorLineNumber.foreground": "#00BCD4",
"sideBar.foreground": "#95a5a6",
"tab.inactiveForeground": "#95a5a6",
"activityBar.foreground": "#95a5a6",
"statusBar.foreground": "#95a5a6"
},
"vim.disableAnnoyingNeovimMessage": true,
"editor.snippetSuggestions": "top"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment