mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
Updated VSCode configs
This commit is contained in:
@@ -25,7 +25,6 @@
|
|||||||
"terminal.integrated.fontSize": 17,
|
"terminal.integrated.fontSize": 17,
|
||||||
//
|
//
|
||||||
// Workbench - Everything that surrounds the editor
|
// Workbench - Everything that surrounds the editor
|
||||||
"workbench.colorTheme": "Visual Studio Dark",
|
|
||||||
"window.zoomLevel": -1, //Reduces the Activity Bar size
|
"window.zoomLevel": -1, //Reduces the Activity Bar size
|
||||||
"files.autoSave": "afterDelay",
|
"files.autoSave": "afterDelay",
|
||||||
"files.autoSaveDelay": 1000,
|
"files.autoSaveDelay": 1000,
|
||||||
@@ -38,6 +37,11 @@
|
|||||||
"diffEditor.renderSideBySide": false,
|
"diffEditor.renderSideBySide": false,
|
||||||
"diffEditor.ignoreTrimWhitespace": false,
|
"diffEditor.ignoreTrimWhitespace": false,
|
||||||
"explorer.confirmDragAndDrop": false,
|
"explorer.confirmDragAndDrop": false,
|
||||||
|
"theme-by-language.themes": {
|
||||||
|
"*": "Visual Studio Dark",
|
||||||
|
"markdown": "Material Theme Darker High Contrast"
|
||||||
|
},
|
||||||
|
"workbench.colorTheme": "Visual Studio Dark",
|
||||||
"workbench.colorCustomizations": {
|
"workbench.colorCustomizations": {
|
||||||
"tab.activeBackground": "#07f7af3f",
|
"tab.activeBackground": "#07f7af3f",
|
||||||
"tab.activeBorder": "#ffffff"
|
"tab.activeBorder": "#ffffff"
|
||||||
@@ -47,9 +51,16 @@
|
|||||||
"debug.toolBarLocation": "docked",
|
"debug.toolBarLocation": "docked",
|
||||||
//
|
//
|
||||||
// Prettier Plugin
|
// Prettier Plugin
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
"prettier.tabWidth": 4,
|
"prettier.tabWidth": 4,
|
||||||
"prettier.useTabs": true,
|
"prettier.useTabs": true,
|
||||||
"prettier.printWidth": 85,
|
"prettier.printWidth": 85,
|
||||||
|
"[html]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
|
"[json]": {
|
||||||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
|
},
|
||||||
//
|
//
|
||||||
// Bracket Pair Colorizer Plugin
|
// Bracket Pair Colorizer Plugin
|
||||||
"bracketPairColorizer.forceUniqueOpeningColor": true,
|
"bracketPairColorizer.forceUniqueOpeningColor": true,
|
||||||
@@ -58,7 +69,12 @@
|
|||||||
"bracketPairColorizer.highlightActiveScope": true,
|
"bracketPairColorizer.highlightActiveScope": true,
|
||||||
//
|
//
|
||||||
// Code Spell Checker Plugin
|
// Code Spell Checker Plugin
|
||||||
|
"cSpell.diagnosticLevel": "Hint",
|
||||||
|
"cSpell.allowCompoundWords": true,
|
||||||
"cSpell.fixSpellingWithRenameProvider": true,
|
"cSpell.fixSpellingWithRenameProvider": true,
|
||||||
|
"cSpell.enableFiletypes": ["shellscript"],
|
||||||
|
"cSpell.minWordLength": 3,
|
||||||
|
"cSpell.numSuggestions": 10,
|
||||||
"cSpell.userWords": [
|
"cSpell.userWords": [
|
||||||
"Aadhaar",
|
"Aadhaar",
|
||||||
"Aiginia",
|
"Aiginia",
|
||||||
@@ -84,17 +100,14 @@
|
|||||||
"subfolder",
|
"subfolder",
|
||||||
"ulta"
|
"ulta"
|
||||||
],
|
],
|
||||||
"cSpell.diagnosticLevel": "Hint",
|
|
||||||
"cSpell.allowCompoundWords": true,
|
|
||||||
//
|
//
|
||||||
// Shell check plgin
|
// Shell check plgin
|
||||||
"shellcheck.run": "onSave",
|
"shellcheck.run": "onSave",
|
||||||
"shellcheck.exclude": [2181, 2039],
|
"shellcheck.exclude": [2181, 2039],
|
||||||
//
|
//
|
||||||
// HTML
|
// Intellicode Plugin
|
||||||
"[html]": {
|
"editor.suggestSelection": "first",
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
||||||
},
|
|
||||||
//
|
//
|
||||||
// JavaScript
|
// JavaScript
|
||||||
"es6-css-minify.minifyOnSave": "yes",
|
"es6-css-minify.minifyOnSave": "yes",
|
||||||
@@ -107,6 +120,7 @@
|
|||||||
"gitlens.hovers.currentLine.over": "annotation",
|
"gitlens.hovers.currentLine.over": "annotation",
|
||||||
"gitlens.advanced.telemetry.enabled": false,
|
"gitlens.advanced.telemetry.enabled": false,
|
||||||
"gitlens.blame.avatars": false,
|
"gitlens.blame.avatars": false,
|
||||||
|
"projectManager.git.baseFolders": ["/media/pratik/Work/Coding/"],
|
||||||
//
|
//
|
||||||
// Golang
|
// Golang
|
||||||
"go.useLanguageServer": true,
|
"go.useLanguageServer": true,
|
||||||
@@ -131,16 +145,6 @@
|
|||||||
"[markdown]": {
|
"[markdown]": {
|
||||||
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
|
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
|
||||||
},
|
},
|
||||||
"theme-by-language.themes": {
|
"markdown.extension.toc.orderedList": true
|
||||||
"*": "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/"]
|
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,11 +39,11 @@ ViewPropsTimestamp=2019,3,8,12,20,14
|
|||||||
[IconsMode]
|
[IconsMode]
|
||||||
FontWeight=50
|
FontWeight=50
|
||||||
IconSize=80
|
IconSize=80
|
||||||
PreviewSize=96
|
PreviewSize=64
|
||||||
|
|
||||||
[KPropertiesDialog]
|
[KPropertiesDialog]
|
||||||
Height 768=450
|
Height 768=478
|
||||||
Width 1366=365
|
Width 1366=446
|
||||||
|
|
||||||
[MainWindow]
|
[MainWindow]
|
||||||
Height 768=703
|
Height 768=703
|
||||||
|
|||||||
Reference in New Issue
Block a user