feat(vscode): VIM keybindings + settings updates

- VIM: Remove Neovim plugin and use VIM since it is easier to set keymaps
- VIM: Keybindings made similar to Neovim
- UI: Theme changed to Catppuccin-Mocha
- Settings: Remove distractions, group settings, search exclusions
This commit is contained in:
Pratik Tripathy
2024-12-26 21:28:08 +05:30
parent c64882ba65
commit decf7c614f
2 changed files with 105 additions and 30 deletions

View File

@@ -6,19 +6,18 @@
// Privacy
"telemetry.telemetryLevel": "off",
"extensions.ignoreRecommendations": true,
"security.workspace.trust.untrustedFiles": "open",
// Editor
"editor.fontSize": 15,
"editor.cursorWidth": 3,
"editor.minimap.enabled": false,
"editor.cursorWidth": 2,
"editor.tabSize": 4,
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.copyWithSyntaxHighlighting": true,
"editor.copyWithSyntaxHighlighting": false,
"editor.acceptSuggestionOnEnter": "smart",
"editor.snippetSuggestions": "top",
"editor.guides.indentation": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.multiCursorModifier": "ctrlCmd",
@@ -26,19 +25,22 @@
"files.trimTrailingWhitespace": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"diffEditor.renderSideBySide": true,
"diffEditor.ignoreTrimWhitespace": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"terminal.integrated.shell.linux": "/bin/zsh",
"explorer.confirmDragAndDrop": false,
"workbench.sideBar.location": "right",
// Editor Font
// Editor Typography
"editor.fontFamily": "FiraCode Nerd Font Mono",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"terminal.integrated.fontFamily": "FiraCode Nerd Font Mono",
"terminal.integrated.fontSize": 15,
// Theme
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.sideBar.location": "right",
"workbench.colorTheme": "GitHub Dark Default",
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.colorCustomizations": {
"tab.activeBackground": "#07f7af3f",
"tab.activeBorder": "#ffffff",
@@ -48,9 +50,46 @@
"statusBar.foreground": "#ffffff",
"statusBar.debuggingForeground": "#ffffff"
},
"window.menuBarVisibility": "compact",
"explorer.confirmDragAndDrop": false,
"security.workspace.trust.untrustedFiles": "open",
// Silence the Noise
"window.menuBarVisibility": "toggle",
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.enabled": false,
"editor.hover.delay": 1500,
"workbench.tips.enabled": false,
"workbench.tree.enableStickyScroll": false,
"editor.stickyScroll.enabled": false,
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleDeclarations": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"workbench.editor.enablePreviewFromQuickOpen": false,
// Search
"search.useIgnoreFiles": false,
"search.exclude": {
// Hide everything in /public
"**/public/{[^i],?[^n]}*": true,
"**/node_modules": true,
"**/dist": true,
"**/composer.lock": true,
"**/package-lock.json": true
},
// Code
"breadcrumbs.enabled": true,
"diffEditor.renderSideBySide": true,
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.wordWrap": "on",
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html",
"react": "html",
"javascript": "html"
},
// Project Manager
"projectManager.git.baseFolders": [".git"],
@@ -77,7 +116,7 @@
"debug.javascript.autoAttachFilter": "disabled",
"debug.onTaskErrors": "debugAnyway",
// Prettier Plugin
// Prettier
"prettier.tabWidth": 4,
"prettier.useTabs": false,
"prettier.printWidth": 85,