Skip to content

Instantly share code, notes, and snippets.

@Postnov
Created April 10, 2018 14:17
Show Gist options
  • Save Postnov/1e89e3d0570855a19e746c7978114da0 to your computer and use it in GitHub Desktop.
Save Postnov/1e89e3d0570855a19e746c7978114da0 to your computer and use it in GitHub Desktop.
vscode setting
{
"window.zoomLevel": -0.3,
// "editor.fontFamily": "'Inconsolata', Consolas, 'Courier New', 'Anonymous Pro', monospace",
// "editor.fontFamily": "'Anonymous Pro', monospace",
"editor.fontFamily": "'Liberation Mono', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.tabSize": 4,
"workbench.colorTheme": "Atom One Dark",
"editor.fontSize": 17,
"editor.lineHeight": 24,
"editor.formatOnPaste": false,
// "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/k D:\\Cmder\\vendor\\init.bat"
],
"terminal.integrated.cursorStyle": "line",
"workbench.iconTheme": "material-icon-theme",
"editor.autoClosingBrackets": true,
"editor.folding": true,
"emmet.triggerExpansionOnTab": true,
"workbench.editor.showTabs": true,
"files.autoSave": "off",
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"files.trimTrailingWhitespace": true,
"editor.useTabStops": false,
"workbench.editor.tabSizing": "shrink",
"workbench.editor.labelFormat": "default",
"autoprefixer.browsers": [
"last 15 versions",
"> 5%"
],
"autoprefixer.formatOnSave": false,
"prettier.eslintIntegration": true,
"prettier.tabWidth": 4,
"stylelint.enable": true,
"explorer.confirmDragAndDrop": false,
"files.encoding": "utf8bom",
"files.encoding":"windows1251",
"files.encoding": "utf8",
"todohighlight.isEnable": true,
"editor.wordWrap": "on",
"workbench.startupEditor": "welcomePage",
"eslint.options": {
"rules": {
// "quotes": [2, "single"]
}
},
"htmlhint.options": {
"tagname-lowercase": true,
"attr-lowercase": true,
"attr-value-double-quotes": true,
"doctype-first": true,
"tag-pair": true,
"spec-char-escape": true,
"id-unique": true,
"src-not-empty": true,
"attr-no-duplication": true,
"title-require": true
},
"csscomb.formatOnSave": true,
"csscomb.preset": "yandex",
"files.autoGuessEncoding": true,
"terminal.explorerKind": "integrated",
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.rightClickBehavior": "selectWord",
"terminal.integrated.fontFamily": "Liberation Mono",
"terminal.integrated.confirmOnExit": true,
"terminal.integrated.cursorBlinking": true,
"sync.gist": "Postnov",
"sync.lastUpload": "",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "",
"sync.forceDownload": false,
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment