mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
VSCode settings updates
This commit is contained in:
@@ -1,179 +1,179 @@
|
||||
{
|
||||
// Global
|
||||
"update.mode": "manual",
|
||||
"workbench.settings.editor": "json",
|
||||
//
|
||||
// Privacy
|
||||
"telemetry.enableTelemetry": false,
|
||||
"telemetry.enableCrashReporter": false,
|
||||
"extensions.showRecommendationsOnlyOnDemand": true,
|
||||
//
|
||||
// Editor
|
||||
// "editor.cursorSmoothCaretAnimation": true,
|
||||
"editor.cursorWidth": 4,
|
||||
"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,
|
||||
//
|
||||
// Screencast Options
|
||||
"screencastMode.verticalOffset": 5,
|
||||
"screencastMode.fontSize": 45,
|
||||
//
|
||||
// Workbench - Everything that surrounds the editor
|
||||
"window.zoomLevel": -1, //Reduces the Activity Bar size
|
||||
"files.autoSave": "afterDelay",
|
||||
"files.autoSaveDelay": 1000,
|
||||
"files.trimTrailingWhitespace": true,
|
||||
"bookmarks.navigateThroughAllFiles": true,
|
||||
"window.menuBarVisibility": "toggle",
|
||||
"editor.multiCursorModifier": "ctrlCmd",
|
||||
"diffEditor.renderSideBySide": false,
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"explorer.confirmDragAndDrop": false,
|
||||
"theme-by-language.themes": {
|
||||
"*": "Community Material Theme Darker High Contrast",
|
||||
"markdown": "Material Theme Darker High Contrast"
|
||||
},
|
||||
"workbench.colorCustomizations": {
|
||||
"tab.activeBackground": "#07f7af3f",
|
||||
"tab.activeBorder": "#ffffff"
|
||||
},
|
||||
"workbench.sideBar.location": "right",
|
||||
//
|
||||
// Debugging
|
||||
"debug.toolBarLocation": "docked",
|
||||
//
|
||||
// Prettier Plugin
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnPaste": true,
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"prettier.tabWidth": 4,
|
||||
"prettier.useTabs": true,
|
||||
"prettier.printWidth": 85,
|
||||
"[html]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
//
|
||||
// Bracket Pair Colorizer Plugin
|
||||
"bracketPairColorizer.forceUniqueOpeningColor": true,
|
||||
"bracketPairColorizer.rulerPosition": "Full",
|
||||
"bracketPairColorizer.showBracketsInRuler": true,
|
||||
"bracketPairColorizer.highlightActiveScope": true,
|
||||
//
|
||||
// Code Spell Checker Plugin
|
||||
"cSpell.diagnosticLevel": "Hint",
|
||||
"cSpell.allowCompoundWords": true,
|
||||
"cSpell.fixSpellingWithRenameProvider": true,
|
||||
"cSpell.enableFiletypes": ["shellscript"],
|
||||
"cSpell.minWordLength": 3,
|
||||
"cSpell.numSuggestions": 10,
|
||||
"cSpell.userWords": [
|
||||
"Aadhaar",
|
||||
"Aiginia",
|
||||
"BBSR",
|
||||
"Bhubaneswar",
|
||||
"GOPATH",
|
||||
"Jython",
|
||||
"Kumar",
|
||||
"OOP",
|
||||
"Odisha",
|
||||
"Pratik",
|
||||
"Printf",
|
||||
"Println",
|
||||
"Sprintf",
|
||||
"Struct",
|
||||
"Tripathy",
|
||||
"VIMP",
|
||||
"VVIMP",
|
||||
"VVVIMP",
|
||||
"arity",
|
||||
"atleast",
|
||||
"elif",
|
||||
"mkdir",
|
||||
"pratiktri",
|
||||
"ptr",
|
||||
"pylint",
|
||||
"subfolder",
|
||||
"ulta",
|
||||
"umount",
|
||||
"unmount"
|
||||
],
|
||||
//
|
||||
// Shell check plgin
|
||||
"shellcheck.run": "onSave",
|
||||
"shellcheck.exclude": [2181, 2039],
|
||||
//
|
||||
// ES Lint
|
||||
"eslint.alwaysShowStatus": true,
|
||||
"eslint.packageManager": "yarn",
|
||||
"eslint.run": "onSave",
|
||||
//
|
||||
//Path Intellisense
|
||||
"typescript.suggest.paths": false,
|
||||
//
|
||||
// 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,
|
||||
"projectManager.git.baseFolders": ["/media/pratik/Work/Coding/"],
|
||||
//
|
||||
// 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,
|
||||
"MD029": false,
|
||||
"no-hard-tabs": false,
|
||||
"line-length": false
|
||||
},
|
||||
"[markdown]": {
|
||||
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
|
||||
},
|
||||
"markdown.extension.toc.orderedList": true,
|
||||
//
|
||||
// Python
|
||||
"python.jediEnabled": false,
|
||||
"terminal.integrated.shell.linux": "/bin/zsh",
|
||||
"prettier.packageManager": "yarn",
|
||||
//
|
||||
// Rust
|
||||
"rust.build_on_save": true,
|
||||
"rust.clippy_preference": "on",
|
||||
"rust.full_docs": true,
|
||||
"[rust]": {
|
||||
"editor.defaultFormatter": "rust-lang.rust"
|
||||
}
|
||||
//
|
||||
// Global
|
||||
"update.mode": "manual",
|
||||
"workbench.settings.editor": "json",
|
||||
//
|
||||
// Privacy
|
||||
"telemetry.enableTelemetry": false,
|
||||
"telemetry.enableCrashReporter": false,
|
||||
"extensions.showRecommendationsOnlyOnDemand": true,
|
||||
//
|
||||
// Editor
|
||||
// "editor.cursorSmoothCaretAnimation": true,
|
||||
"editor.cursorWidth": 4,
|
||||
"editor.minimap.enabled": false,
|
||||
"editor.wordWrap": "on",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnPaste": true,
|
||||
"editor.copyWithSyntaxHighlighting": true,
|
||||
"editor.tabSize": 4,
|
||||
"prettier.tabWidth": 4,
|
||||
"editor.insertSpaces": true,
|
||||
"editor.detectIndentation": false,
|
||||
"editor.renderIndentGuides": true,
|
||||
"editor.multiCursorModifier": "ctrlCmd",
|
||||
"files.trimTrailingWhitespace": true,
|
||||
"files.autoSave": "afterDelay",
|
||||
"files.autoSaveDelay": 1000,
|
||||
"diffEditor.renderSideBySide": false,
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
//
|
||||
// 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.startupEditor": "newUntitledFile",
|
||||
"workbench.sideBar.location": "left",
|
||||
"window.zoomLevel": -1, //Reduces the Activity Bar size
|
||||
"workbench.colorCustomizations": {
|
||||
"tab.activeBackground": "#07f7af3f",
|
||||
"tab.activeBorder": "#ffffff"
|
||||
},
|
||||
"bookmarks.navigateThroughAllFiles": true,
|
||||
"window.menuBarVisibility": "toggle",
|
||||
"explorer.confirmDragAndDrop": false,
|
||||
//
|
||||
// Screencast Options
|
||||
"screencastMode.verticalOffset": 5,
|
||||
"screencastMode.fontSize": 45,
|
||||
//
|
||||
// Debugging
|
||||
"debug.toolBarLocation": "docked",
|
||||
//
|
||||
// Prettier Plugin
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"prettier.useTabs": false,
|
||||
"prettier.printWidth": 85,
|
||||
"[html]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
//
|
||||
// Bracket Pair Colorizer Plugin
|
||||
"bracketPairColorizer.forceUniqueOpeningColor": true,
|
||||
"bracketPairColorizer.rulerPosition": "Full",
|
||||
"bracketPairColorizer.showBracketsInRuler": true,
|
||||
"bracketPairColorizer.highlightActiveScope": true,
|
||||
//
|
||||
// Code Spell Checker Plugin
|
||||
"cSpell.diagnosticLevel": "Hint",
|
||||
"cSpell.allowCompoundWords": true,
|
||||
"cSpell.fixSpellingWithRenameProvider": true,
|
||||
"cSpell.enableFiletypes": ["shellscript"],
|
||||
"cSpell.minWordLength": 3,
|
||||
"cSpell.numSuggestions": 10,
|
||||
"cSpell.userWords": [
|
||||
"Aadhaar",
|
||||
"Aiginia",
|
||||
"BBSR",
|
||||
"Bhubaneswar",
|
||||
"GOPATH",
|
||||
"Jython",
|
||||
"Kumar",
|
||||
"OOP",
|
||||
"Odisha",
|
||||
"Pratik",
|
||||
"Printf",
|
||||
"Println",
|
||||
"Sprintf",
|
||||
"Struct",
|
||||
"Structs",
|
||||
"Tripathy",
|
||||
"VIMP",
|
||||
"VVIMP",
|
||||
"VVVIMP",
|
||||
"arity",
|
||||
"atleast",
|
||||
"elif",
|
||||
"mkdir",
|
||||
"pratiktri",
|
||||
"ptr",
|
||||
"pylint",
|
||||
"subfolder",
|
||||
"ulta",
|
||||
"umount",
|
||||
"unmount"
|
||||
],
|
||||
//
|
||||
// Shell check plgin
|
||||
"shellcheck.run": "onSave",
|
||||
"shellcheck.exclude": [2181, 2039],
|
||||
//
|
||||
// ES Lint
|
||||
"eslint.alwaysShowStatus": true,
|
||||
"eslint.packageManager": "yarn",
|
||||
"eslint.run": "onSave",
|
||||
//
|
||||
//Path Intellisense
|
||||
"typescript.suggest.paths": false,
|
||||
//
|
||||
// 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,
|
||||
"projectManager.git.baseFolders": ["/media/pratik/Work/Coding/"],
|
||||
//
|
||||
// Golang
|
||||
"go.useLanguageServer": 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,
|
||||
"MD029": false,
|
||||
"no-hard-tabs": false,
|
||||
"line-length": false
|
||||
},
|
||||
"[markdown]": {
|
||||
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
|
||||
},
|
||||
"markdown.extension.toc.orderedList": true,
|
||||
//
|
||||
// Python
|
||||
"python.jediEnabled": false,
|
||||
"terminal.integrated.shell.linux": "/bin/zsh",
|
||||
"prettier.packageManager": "yarn",
|
||||
//
|
||||
// Rust
|
||||
"rust.build_on_save": true,
|
||||
"rust.clippy_preference": "on",
|
||||
"rust.full_docs": true,
|
||||
"[rust]": {
|
||||
"editor.defaultFormatter": "rust-lang.rust"
|
||||
},
|
||||
//
|
||||
// Theme
|
||||
"workbench.colorTheme": "Material Theme Darker High Contrast",
|
||||
"workbench.iconTheme": "material-icon-theme"
|
||||
//
|
||||
}
|
||||
|
||||
@@ -48,7 +48,7 @@ Width 1366=446
|
||||
[MainWindow]
|
||||
Height 768=703
|
||||
MenuBar=Disabled
|
||||
State=AAAA/wAAAAD9AAAAAwAAAAAAAAD3AAACnfwCAAAAAvsAAAAUAHAAbABhAGMAZQBzAEQAbwBjAGsBAAAAIgAAAU8AAAByAQAAA/sAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawEAAAFyAAABTQAAAHIBAAADAAAAAQAAALAAAAKd/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAAAAACIAAAKdAAAAIgEAAAMAAAADAAAFVgAAAH/8AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAFVgAAAEQBAAADAAAEXgAAAp0AAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA=
|
||||
State=AAAA/wAAAAD9AAAAAwAAAAAAAAD3AAACnfwCAAAAAvsAAAAUAHAAbABhAGMAZQBzAEQAbwBjAGsBAAAAIgAAAU8AAAByAQAAA/sAAAAWAGYAbwBsAGQAZQByAHMARABvAGMAawEAAAFyAAABTQAAAHIBAAADAAAAAQAAALAAAAKd/AIAAAAB+wAAABAAaQBuAGYAbwBEAG8AYwBrAAAAACIAAAKdAAAAIgEAAAMAAAADAAAFVgAAAMT8AQAAAAH7AAAAGAB0AGUAcgBtAGkAbgBhAGwARABvAGMAawAAAAAAAAAFVgAAAEQBAAADAAAEXgAAAp0AAAAEAAAABAAAAAgAAAAI/AAAAAEAAAACAAAAAQAAABYAbQBhAGkAbgBUAG8AbwBsAEIAYQByAQAAAAD/////AAAAAAAAAAA=
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1366=1366
|
||||
Window-Maximized 768x1366=true
|
||||
|
||||
Reference in New Issue
Block a user