Created
April 10, 2022 15:06
-
-
Save santuman/d401fd5cf7f846d26cf00d88cd8858f8 to your computer and use it in GitHub Desktop.
latest vscode config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.quickSuggestions": true, | |
// "editor.tabSize": 4, | |
/** | |
* Better Defaults | |
**/ | |
"window.menuBarVisibility": "hidden", | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.emptySelectionClipboard": false, | |
"workbench.editor.enablePreview": false, | |
"window.newWindowDimensions": "inherit", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.snippetSuggestions": "top", | |
"editor.detectIndentation": true, | |
"window.nativeFullScreen": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"workbench.sideBar.location": "right", | |
"workbench.editor.showTabs": false, | |
"editor.renderIndentGuides": true, | |
"editor.lineNumbers": "on", | |
/** | |
* Silence The Noise | |
*/ | |
"editor.scrollbar.vertical": "hidden", | |
"editor.scrollbar.verticalScrollbarSize": 0, | |
"editor.scrollbar.horizontalScrollbarSize": 0, | |
"editor.scrollbar.horizontal": "hidden", | |
"scm.diffDecorations": "none", | |
"editor.hover.enabled": true, | |
"editor.matchBrackets": "never", | |
"workbench.tips.enabled": false, | |
"editor.colorDecorators": false, | |
"git.decorations.enabled": false, | |
"workbench.startupEditor": "none", | |
"editor.lightbulb.enabled": false, | |
"editor.selectionHighlight": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "none", | |
"editor.occurrencesHighlight": false, | |
"problems.decorations.enabled": false, | |
"editor.renderControlCharacters": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
"editor.fontFamily": "Dank Mono", | |
"editor.fontSize": 14, | |
// "editor.lineHeight": 30, | |
// "editor.letterSpacing": 0.5, | |
// "editor.fontWeight": "600", | |
// "editor.suggestFontSize": 15, | |
// "editor.suggestLineHeight": 28, | |
// "terminal.integrated.fontSize": 16, | |
// "terminal.integrated.lineHeight": 1.5, | |
/** | |
* Find | |
**/ | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
// Hide everything in /vendor, except the "laravel" and "livewire" folder. | |
"**/vendor/{[^l],?[^ai]}*": true, | |
// Hide everything in /public, except "index.php" | |
"**/public/{[^i],?[^n]}*": true, | |
"**/node_modules": true, | |
"**/dist": true, | |
"**/_ide_helper.php": true, | |
"**/composer.lock": true, | |
"**/package-lock.json": true, | |
"storage": true, | |
".phpunit.result.cache": true | |
}, | |
/** | |
* Code | |
**/ | |
// Include "-" in word selection. | |
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", | |
"emmet.includeLanguages": { | |
"blade": "html", | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
// Development setup | |
"css.validate": false, | |
"less.validate": false, | |
"scss.validate": false, | |
"vetur.validation.style": false, | |
/** | |
* Prettier | |
**/ | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": false, | |
"editor.formatOnType": false, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
// "[javascript]": { | |
// "editor.defaultFormatter": "esbenp.prettier-vscode", | |
// "editor.formatOnSave": true | |
// }, | |
"prettier.requireConfig": false, | |
"prettier.useEditorConfig": false, | |
"prettier.ignorePath": ".prettierignore", | |
/** | |
* Window Settings | |
**/ | |
// "window.nativeTabs": true, | |
"workbench.settings.editor": "json", | |
// "window.titleBarStyle": "", | |
"customizeUI.titleBar": "inline", | |
"customizeUI.activityBar": "top", | |
// "customizeUI.font.monospace": "Operator Mono", | |
"customizeUI.font.regular": "Operator Mono", | |
// "customizeUI.titleBar": "inline", | |
"customizeUI.stylesheet": { | |
".editor .title": "background: transparent !important;", | |
".editor .title .label-container": "", | |
// Hide top-right buttons | |
".editor .title .actions-container .action-item a": "visibility: hidden;", | |
// Show top-right "settings goto icon" | |
".editor .title .actions-container .action-item a[title=\"Open Settings (UI)\"]": "visibility: initial;", | |
".editor .title .actions-container .action-item a[title=\"Open Settings (JSON)\"]": "visibility: initial;", | |
// Make it the "right-most" icon. | |
".editor .title .actions-container": "flex-direction: row-reverse;", | |
// Only show the scrollbar on hover. | |
".editor .scrollbar .slider": "visibility: hidden", | |
".editor .scrollbar:hover .slider": "visibility: initial", | |
// Change cursor color. | |
".monaco-editor .cursor": "background: linear-gradient(to bottom, #7f00ff, #e100ff) !important; color: #292D3E !important" | |
}, | |
/** | |
* VIM Settings | |
**/ | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["c"], | |
"commands": ["workbench.action.closeActiveEditor"] | |
}, | |
{ | |
"before": ["<space>"], | |
"commands": ["workbench.action.files.save"] | |
} | |
], | |
"vim.handleKeys": { | |
"<C-f>": false, | |
"<C-space>": false, | |
"<C-d>": false, | |
"<C-b>": false, | |
"<C-c>": false, | |
"<C-v>": false, | |
"<C-a>": false, | |
"<f2>": false, | |
"<C-x>": false | |
}, | |
// LESS RAM CONSUMPTION | |
//exludes fies & folders for watcher service | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/**": true, | |
"**/env/**": true, | |
"**/venv/**": true, | |
"env-*": true | |
}, | |
"workbench.statusBar.visible": false, | |
"editor.minimap.enabled": false, | |
"workbench.colorTheme": "Level Up", | |
"window.titleBarStyle": "native", | |
"blockman.n01LineHeight": 0, | |
"workbench.colorCustomizations": { | |
"editor.lineHighlightBackground": "#1073cf2d", | |
"editor.lineHighlightBorder": "#9fced11f" | |
}, | |
"editor.wordWrap": "off", | |
"diffEditor.wordWrap": "off", | |
"editor.guides.indentation": false, | |
"editor.guides.bracketPairs": false, | |
"editor.inlayHints.enabled": false, | |
"blockman.n33A01B2FromDepth0ToInwardForAllBackgrounds": "45,0,0,2; none", | |
"window.zoomLevel": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment