Files
dotfiles/.config/Code/User/settings.json
2020-05-17 02:38:02 +05:30

147 lines
3.7 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": false,
"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",
"Aiginia",
"BBSR",
"GOPATH",
"Jython",
"Kumar",
"Odisha",
"Pratik",
"Printf",
"Println",
"Sprintf",
"Struct",
"Tripathy",
"VIMP",
"VVIMP",
"VVVIMP",
"atleast",
"elif",
"mkdir",
"pratiktri",
"pylint",
"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": "annotation",
"gitlens.advanced.telemetry.enabled": false,
"gitlens.blame.avatars": false,
//
// 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"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"markdown.extension.toc.orderedList": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"projectManager.git.baseFolders": ["/media/pratik/Work/Coding/"]
//
}