Files
dotfiles/.config/Code/User/settings.json
2020-03-30 18:40:55 +05:30

134 lines
3.3 KiB
JSON

{
// Global
"update.mode": "manual",
"workbench.settings.editor": "json",
//
// Privacy
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"extensions.showRecommendationsOnlyOnDemand": true,
//
// Editor
"editor.cursorSmoothCaretAnimation": true,
"editor.minimap.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"editor.wordWrap": "on",
"workbench.iconTheme": "material-icon-theme",
"editor.renderIndentGuides": true,
"editor.copyWithSyntaxHighlighting": true,
//
// Editor Font
"editor.fontFamily": "'FuraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 17.4,
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "FuraCode Nerd Font",
"terminal.integrated.fontSize": 17,
//
// Workbench - Everything that surrounds the editor
"workbench.colorTheme": "Visual Studio Dark",
"window.zoomLevel": -1, //Reduces the Activity Bar size
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"files.trimTrailingWhitespace": true,
"bookmarks.navigateThroughAllFiles": true,
"window.menuBarVisibility": "toggle",
"editor.multiCursorModifier": "ctrlCmd",
"diffEditor.renderSideBySide": false,
"diffEditor.ignoreTrimWhitespace": true,
"explorer.confirmDragAndDrop": false,
"workbench.colorCustomizations": {
"tab.activeBackground": "#07f7af3f",
"tab.activeBorder": "#ffffff"
},
//
// Debugging
"debug.toolBarLocation": "docked",
//
// Prettier Plugin
"prettier.tabWidth": 4,
"prettier.useTabs": true,
"prettier.printWidth": 85,
//
// Bracket Pair Colorizer Plugin
"bracketPairColorizer.forceUniqueOpeningColor": true,
"bracketPairColorizer.rulerPosition": "Full",
"bracketPairColorizer.showBracketsInRuler": true,
"bracketPairColorizer.highlightActiveScope": true,
//
// Code Spell Checker Plugin
"cSpell.fixSpellingWithRenameProvider": true,
"cSpell.userWords": [
"Aadhaar",
"GOPATH",
"Kumar",
"Pratik",
"Printf",
"Println",
"Sprintf",
"Struct",
"Tripathy",
"VIMP",
"VVIMP",
"VVVIMP",
"atleast",
"mkdir",
"pratiktri",
"subfolder",
"ulta"
],
"cSpell.diagnosticLevel": "Hint",
"cSpell.allowCompoundWords": true,
//
// Shell check plgin
"shellcheck.run": "onSave",
"shellcheck.exclude": [
2181,
2039
],
//
// HTML
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
//
// JavaScript
"es6-css-minify.minifyOnSave": "yes",
"es6-css-minify.onSaveDelay": 10,
//
// Git
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"gitlens.hovers.currentLine.over": "line",
//
// Golang
"go.useLanguageServer": true,
"[go]": {
"editor.formatOnSave": true,
},
"go.formatTool": "gofmt",
//
// Markdown
"markdown.extension.italic.indicator": "_",
"markdown.extension.print.imgToBase64": true,
"markdown.extension.print.theme": "dark",
"markdown.extension.toc.githubCompatibility": true,
"markdownlint.run": "onType",
"markdownlint.config": {
"default": true,
"MD030": false,
"MD007": false,
"no-hard-tabs": false,
"line-length": false
},
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"theme-by-language.themes": {
"*": "Visual Studio Dark",
"markdown": "Material Theme Darker High Contrast"
},
//
}