Skip to content

Instantly share code, notes, and snippets.

@Gordin
Created October 11, 2017 11:19
Show Gist options
  • Save Gordin/8150d174064e1b34dbdc7c266da2f15c to your computer and use it in GitHub Desktop.
Save Gordin/8150d174064e1b34dbdc7c266da2f15c to your computer and use it in GitHub Desktop.
Visual Studio Code conf
{
"vim.disableAnnoyingNeovimMessage": true,
"window.zoomLevel": 0,
"python.pythonPath": "python2",
"editor.wordWrapColumn": 100,
"editor.renderWhitespace": "boundary",
"workbench.colorTheme": "Monokai",
"editor.fontSize": 15,
"search.exclude": {
"**/node_modules": true,
"**/platforms": true,
"**/www/build": true,
"**/bower_components": true,
"**/externals/": true
},
"python.linting.pylintArgs": [
"--load-plugins=pylint_django"
],
"jshint.exclude": {
"**/node_modules": true,
"**/platforms": true,
"**/www/build": true,
"**/bower_components": true,
"**/externals/": true
},
"files.exclude": {
"**/node_modules": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"vim.visualstar": true,
"vim.hlsearch": true,
"vim.easymotion": true,
"vim.leader": ",",
"vim.otherModesKeyBindings": [
{
"before": ["leader", "h"],
"after": [],
"commands": [
{
"command": ":tabprevious",
"args": []
}
]
}, {
"before": ["leader", "l"],
"after": [],
"commands": [
{
"command": ":tabnext",
"args": []
}
]
}
],
"vim.useSystemClipboard": true,
"vim.substituteGlobalFlag": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment