Skip to content

Instantly share code, notes, and snippets.

@sandiprb
Last active May 9, 2018 09:12
Show Gist options
  • Save sandiprb/d15baf723f13bbc52bf4cf71ca035790 to your computer and use it in GitHub Desktop.
Save sandiprb/d15baf723f13bbc52bf4cf71ca035790 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Material Theme Palenight",
"window.zoomLevel": -1,
"editor.insertSpaces": true,
"editor.wordWrap": "on",
"workbench.sideBar.location": "right",
"editor.fontSize": 15,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
        "**/CACHE/*": true,
        "**/*.bundle.js": true,
        "**/css/*.css": true
},
"workbench.statusBar.visible": true,
"workbench.startupEditor": "newUntitledFile",
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/*.bundle.js": true,
// "**/css/*.css": true
},
"files.associations": {
"*.pcss": "scss",
"*.css": "scss"
},
"emmet.includeLanguages":{"postcss": "css"},
"emmet.syntaxProfiles": {"postcss": "css"},
// Whether to lint Python files using flake8
"python.linting.flake8Enabled": true,
"python.linting.pylintArgs": ["--disable=C0111", "--max-line-length=120"],
"python.pythonPath": "/Users/sandip/anaconda2/bin/python",
"prettier.trailingComma": "es5",
"prettier.printWidth": 80,
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
"prettier.useTabs": true,
"prettier.semi": false,
"prettier.bracketSpacing": false,
"prettier.jsxBracketSameLine": false,
"prettier.typescriptEnable": ["typescript", "typescriptreact", "postcss"],
"prettier.requireConfig": false,
"editor.formatOnSave": false,
"python.formatting.formatOnSave": false,
// "javascript.formatting.formatOnSave": true,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"workbench.editor.enablePreview": false,
// "html.format.enable": false
// "html": {"editor.formatOnSave.ex": false},
"workbench.colorCustomizations": {
"activityBar.background": "#1a1d23",
// "foreground": "#756868",
"sideBar.background": "#222730",
"editor.background": "#181b21",
"editor.background": "#222730",
"statusBar.background": "#0a0b0d",
"editorRuler.foreground": "#424141"
},
"python.disablePromptForFeatures": [
"flake8",
"pylint"
],
"workbench.fontAliasing": "default",
"editor.cursorStyle": "line",
"workbench.panel.location": "right",
// "[javascript]": {
// "editor.formatOnSave": true
// },
// "[typescripts]": {
// "editor.formatOnSave": true
// },
"typescript.tsdk": "node_modules/typescript/lib",
// "editor.fontFamily": "Operator Mono, Monaco, 'Courier New', monospace",
// "editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.smoothScrolling": true,
"editor.fontLigatures": true,
// "emmet.extensionsPath": "/Users/sandip/.vscode/snippets.json",
"emmet.includeLanguages": {
"css": "css"
},
// "emmet.triggerExpansionOnTab": true,
"[postcss]": {},
"workbench.iconTheme": "eq-material-theme-icons",
"html.format.enable": true,
"beautify.language": {
// "js": {
// "type": ["javascript", "json"],
// "filename": [".jshintrc", ".jsbeautifyrc"]
// "ext": ["js", "json"]
// ^^ to set extensions to be beautified using the javascript beautifier
// },
"css": ["css", "postcss"],
"html": ["htm", "html"]
// ^^ providing just an array sets the VS Code file type
},
"editor.rulers": [120],
"less.compile": {
"compress": false, // true => remove surplus whitespace
// "sourceMap": false, // true => generate source maps (.css.map files)
// "out": true, // false => DON'T output .css files (overridable per-file, see below)
},
"html-css-class-completion.includeGlobPattern": "**/*.{css,html,tsx}",
"editor.tabCompletion": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment