"up" now does brew update

- VSCode - shift+esc - to hide side panel
- VSCode- Settings  -cleanup, added better comment settings
This commit is contained in:
Pratik Tripathy
2023-08-02 11:25:46 +05:30
parent 674859b114
commit 075426740e
4 changed files with 63 additions and 17 deletions

View File

@@ -8,6 +8,8 @@
"extensions.ignoreRecommendations": true,
//
// Editor
"editor.fontSize": 21, // Increase the Editor's font to offset
"window.zoomLevel": -1, // Reduces the Activity Bar size
"editor.cursorWidth": 4,
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
@@ -29,16 +31,14 @@
"diffEditor.ignoreTrimWhitespace": false,
//
// Editor Font
"editor.fontFamily": "Hasklug Nerd Font",
"editor.fontSize": 17,
"editor.fontFamily": "FuraCode Nerd Font",
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "FuraCode Nerd Font",
"terminal.integrated.fontSize": 17,
"terminal.integrated.fontSize": 20,
//
// Workbench - Everything that surrounds the editor
"workbench.startupEditor": "newUntitledFile",
"workbench.sideBar.location": "left",
// "window.zoomLevel": -1, //Reduces the Activity Bar size
"workbench.sideBar.location": "left",zoomLevel
"workbench.colorCustomizations": {
"tab.activeBackground": "#07f7af3f",
"tab.activeBorder": "#ffffff"
@@ -119,23 +119,69 @@
// Shell check plugin
"shellcheck.run": "onSave",
"shellcheck.exclude": ["2181", "2039"],
"security.workspace.trust.untrustedFiles": "open",
//
// Better Comments
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
// ES Lint
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "yarn",
"eslint.run": "onSave",
//
// JavaScript
"es6-css-minify.minifyOnSave": "yes",
"es6-css-minify.onSaveDelay": 10,
"typescript.suggest.paths": false,
//
// Git
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"gitlens.hovers.currentLine.over": "line",
// GetLens
"gitlens.hovers.currentLine.over": "line",
"gitlens.advanced.telemetry.enabled": false,
"gitlens.statusBar.reduceFlicker": true,
"gitlens.blame.avatars": false,
@@ -150,7 +196,6 @@
// Markdown
"markdown.extension.print.imgToBase64": true,
"markdown.extension.print.theme": "dark",
"markdown.extension.toc.githubCompatibility": true,
"markdownlint.run": "onType",
"markdown.extension.toc.orderedList": true,
"markdown.extension.tableFormatter.normalizeIndentation": true,
@@ -176,6 +221,7 @@
//
//
// Themes
"workbench.colorTheme": "GitHub Dark Dimmed",
"workbench.iconTheme": "material-icon-theme",
"theme-by-language.themes": {
"*": "GitHub Dark",
@@ -195,7 +241,8 @@
"rust-analyzer.inlayHints.enable": false,
"rust-analyzer.inlayHints.typeHints": false,
//
"workbench.colorTheme": "GitHub Dark Dimmed",
"terminal.integrated.shell.linux": "/bin/zsh"
"terminal.integrated.shell.linux": "/bin/zsh",
"debug.javascript.autoAttachFilter": "disabled",
"debug.onTaskErrors": "debugAnyway"
//
}