Last active
January 17, 2025 13:49
-
-
Save Robiussani152/d21ef021c5ebc059524c60e8eb8234a3 to your computer and use it in GitHub Desktop.
Install font from here: https://github.com/lissanh95/operator-mono-lig-1
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.suggestSelection": "first", | |
| "editor.fontFamily": "'Operator Mono Lig', 'Hack Nerd Font Mono'", | |
| "editor.fontWeight": "400", | |
| "editor.formatOnPaste": true, | |
| "material-icon-theme.folders.color": "#8C59D0", | |
| "editor.fontSize": 16, | |
| "workbench.startupEditor": "none", | |
| "workbench.editor.enablePreview": false, | |
| "editor.formatOnType": true, | |
| "git.enableSmartCommit": true, | |
| "diffEditor.codeLens": true, | |
| "eslint.lintTask.enable": true, | |
| "[vue]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[php]": { | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
| }, | |
| "explorer.confirmDelete": false, | |
| "editor.formatOnSave": true, | |
| "editor.wordWrap": "on", | |
| "[markdown]": { | |
| "editor.wordWrap": "on", | |
| "editor.quickSuggestions": { | |
| "comments": "off", | |
| "strings": "off", | |
| "other": "off" | |
| } | |
| }, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "settingsSync.ignoredExtensions": [], | |
| "breadcrumbs.enabled": true, | |
| "editor.renderWhitespace": "none", | |
| "terminal.integrated.fontSize": 16, | |
| "editor.autoClosingBrackets": "always", | |
| "editor.autoClosingQuotes": "always", | |
| "terminal.integrated.fontWeightBold": "300", | |
| "editor.fontLigatures": false, | |
| "workbench.colorCustomizations": { | |
| "activityBarBadge.background": "#F44336", | |
| "activityBar.activeBorder": "#F44336", | |
| "list.activeSelectionForeground": "#F44336", | |
| "list.inactiveSelectionForeground": "#F44336", | |
| "list.highlightForeground": "#F44336", | |
| "scrollbarSlider.activeBackground": "#F4433650", | |
| "editorSuggestWidget.highlightForeground": "#F44336", | |
| "textLink.foreground": "#F44336", | |
| "progressBar.background": "#F44336", | |
| "pickerGroup.foreground": "#F44336", | |
| "tab.activeBorder": "#F44336", | |
| "notificationLink.foreground": "#F44336", | |
| "editorWidget.resizeBorder": "#F44336", | |
| "editorWidget.border": "#F44336", | |
| "settings.modifiedItemIndicator": "#F44336", | |
| "settings.headerForeground": "#F44336", | |
| "panelTitle.activeBorder": "#F44336", | |
| "breadcrumb.activeSelectionForeground": "#F44336", | |
| "menu.selectionForeground": "#F44336", | |
| "menubar.selectionForeground": "#F44336", | |
| "editor.findMatchBorder": "#F44336", | |
| "selection.background": "#F4433640" | |
| }, | |
| "editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", | |
| "files.autoSave": "afterDelay", | |
| "explorer.confirmDragAndDrop": false, | |
| "security.workspace.trust.enabled": false, | |
| "security.workspace.trust.untrustedFiles": "newWindow", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "emmet.syntaxProfiles": { | |
| "smarty": "html" | |
| }, | |
| "beautify.language": { | |
| "html": ["html", "smarty"] | |
| }, | |
| "blade.format.enable": true, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "cSpell.userWords": ["Authenticatable"], | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.inlineSuggest.enabled": true, | |
| "terminal.integrated.defaultProfile.windows": "Git Bash", | |
| "terminal.external.windowsExec": "D:\\laragon\\bin\\git\\bin\\bash.exe", | |
| "gitlens.hovers.currentLine.over": "line", | |
| "window.zoomLevel": 1, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "yaml": false, | |
| "plaintext": true, | |
| "markdown": false | |
| }, | |
| "git.confirmSync": false, | |
| "[scss]": { | |
| "editor.defaultFormatter": "vscode.css-language-features" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "vscode.css-language-features" | |
| }, | |
| "emmet.triggerExpansionOnTab": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.minimap.enabled": false, | |
| "minify.js": { | |
| "mangle": true, | |
| "compress": { | |
| "sequences": true, | |
| "properties": true, | |
| "dead_code": true, | |
| "drop_debugger": true, | |
| "unsafe": false, | |
| "unsafe_comps": false, | |
| "conditionals": true, | |
| "comparisons": true, | |
| "evaluate": true, | |
| "booleans": true, | |
| "loops": true, | |
| "unused": true, | |
| "hoist_funs": true, | |
| "keep_fargs": true, | |
| "keep_fnames": false, | |
| "hoist_vars": false, | |
| "if_return": true, | |
| "join_vars": true, | |
| "collapse_vars": false, | |
| "reduce_vars": false, | |
| "side_effects": true, | |
| "pure_getters": false, | |
| "pure_funcs": null, | |
| "negate_iife": false, | |
| "drop_console": false, | |
| "passes": 1, | |
| "global_defs": {} | |
| }, | |
| "output": { | |
| "ascii_only": false, | |
| "inline_script": false, | |
| "max_line_len": 32000, | |
| "braces": false, | |
| "semicolons": true, | |
| "comments": false, | |
| "shebang": true, | |
| "preamble": null, | |
| "quote_style": "best" | |
| } | |
| }, | |
| "vetur.format.defaultFormatter.js": "prettier-eslint", | |
| "workbench.colorTheme": "Learn with Sumit Theme - Dracula version", | |
| "dart.debugExternalPackageLibraries": false, | |
| "dart.debugSdkLibraries": false, | |
| "vetur.validation.template": false, | |
| "liveServer.settings.donotVerifyTags": true, | |
| "editor.guides.bracketPairs": true | |
| } |
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.suggestSelection": "first", | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Night Owl", | |
| "editor.fontFamily": "'Operator Mono Lig Book',Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontWeight": "500", | |
| "editor.formatOnPaste": true, | |
| "material-icon-theme.folders.color": "#8C59D0", | |
| "editor.fontSize": 16, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "liveServer.settings.CustomBrowser": "chrome", | |
| "workbench.startupEditor": "none", | |
| "workbench.editor.enablePreview": false, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.formatOnType": true, | |
| "git.enableSmartCommit": true, | |
| "diffEditor.codeLens": true, | |
| "[vue]": { | |
| "editor.defaultFormatter": "octref.vetur" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[php]": { | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client", | |
| }, | |
| "explorer.confirmDelete": false, | |
| "editor.formatOnSave": true, | |
| "tabnine.experimentalAutoImports": true, | |
| "editor.wordWrap": "on", | |
| "editor.wordWrapColumn": 40, | |
| "[markdown]": { | |
| "editor.wordWrap": "on", | |
| "editor.quickSuggestions": false | |
| }, | |
| "blade.format.enable": true, | |
| "editor.codeActionsOnSave": null, | |
| "settingsSync.ignoredExtensions": [ | |
| ], | |
| "terminal.integrated.fontFamily": "Operator Mono Lig Book", | |
| "breadcrumbs.enabled": true, | |
| "editor.renderWhitespace": "none", | |
| "terminal.integrated.fontSize": 16, | |
| "editor.autoClosingBrackets": "always", | |
| "editor.autoClosingQuotes": "always", | |
| "terminal.integrated.fontWeightBold": "300", | |
| "editor.fontLigatures": true, | |
| "workbench.colorCustomizations": { | |
| "activityBarBadge.background": "#F44336", | |
| "activityBar.activeBorder": "#F44336", | |
| "list.activeSelectionForeground": "#F44336", | |
| "list.inactiveSelectionForeground": "#F44336", | |
| "list.highlightForeground": "#F44336", | |
| "scrollbarSlider.activeBackground": "#F4433650", | |
| "editorSuggestWidget.highlightForeground": "#F44336", | |
| "textLink.foreground": "#F44336", | |
| "progressBar.background": "#F44336", | |
| "pickerGroup.foreground": "#F44336", | |
| "tab.activeBorder": "#F44336", | |
| "notificationLink.foreground": "#F44336", | |
| "editorWidget.resizeBorder": "#F44336", | |
| "editorWidget.border": "#F44336", | |
| "settings.modifiedItemIndicator": "#F44336", | |
| "settings.headerForeground": "#F44336", | |
| "panelTitle.activeBorder": "#F44336", | |
| "breadcrumb.activeSelectionForeground": "#F44336", | |
| "menu.selectionForeground": "#F44336", | |
| "menubar.selectionForeground": "#F44336", | |
| "editor.findMatchBorder": "#F44336", | |
| "selection.background": "#F4433640" | |
| }, | |
| "workbench.editorAssociations": [ | |
| { | |
| "viewType": "", | |
| "filenamePattern": "" | |
| } | |
| ], | |
| "editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", | |
| } |
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.suggestSelection": "first", | |
| "editor.fontFamily": "'Fira code'", | |
| "editor.fontWeight": "500", | |
| "editor.formatOnPaste": true, | |
| "material-icon-theme.folders.color": "#8C59D0", | |
| "editor.fontSize": 14, | |
| "workbench.editor.enablePreview": true, | |
| "editor.formatOnType": true, | |
| "git.enableSmartCommit": true, | |
| "diffEditor.codeLens": true, | |
| "eslint.lintTask.enable": true, | |
| "[vue]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[php]": { | |
| "editor.defaultFormatter": "open-southeners.laravel-pint" | |
| }, | |
| "explorer.confirmDelete": false, | |
| "editor.formatOnSave": true, | |
| "editor.wordWrap": "on", | |
| "[markdown]": { | |
| "editor.wordWrap": "on", | |
| "editor.quickSuggestions": { | |
| "comments": "off", | |
| "strings": "off", | |
| "other": "off" | |
| } | |
| }, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "never" | |
| }, | |
| "settingsSync.ignoredExtensions": [], | |
| "breadcrumbs.enabled": false, | |
| "editor.renderWhitespace": "none", | |
| "terminal.integrated.fontSize": 16, | |
| "editor.autoClosingBrackets": "always", | |
| "editor.autoClosingQuotes": "always", | |
| "terminal.integrated.fontWeightBold": "400", | |
| "editor.fontLigatures": true, | |
| "workbench.colorCustomizations": { | |
| "activityBarBadge.background": "#F44336", | |
| "activityBar.activeBorder": "#F44336", | |
| "list.activeSelectionForeground": "#F44336", | |
| "list.inactiveSelectionForeground": "#F44336", | |
| "list.highlightForeground": "#F44336", | |
| "scrollbarSlider.activeBackground": "#F4433650", | |
| "editorSuggestWidget.highlightForeground": "#F44336", | |
| "textLink.foreground": "#F44336", | |
| "progressBar.background": "#F44336", | |
| "pickerGroup.foreground": "#F44336", | |
| "tab.activeBorder": "#F44336", | |
| "notificationLink.foreground": "#F44336", | |
| "editorWidget.resizeBorder": "#F44336", | |
| "editorWidget.border": "#F44336", | |
| "settings.modifiedItemIndicator": "#F44336", | |
| "settings.headerForeground": "#F44336", | |
| "panelTitle.activeBorder": "#F44336", | |
| "breadcrumb.activeSelectionForeground": "#F44336", | |
| "menu.selectionForeground": "#F44336", | |
| "menubar.selectionForeground": "#F44336", | |
| "editor.findMatchBorder": "#F44336", | |
| "selection.background": "#F4433640" | |
| }, | |
| "editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", | |
| "explorer.confirmDragAndDrop": false, | |
| "security.workspace.trust.enabled": false, | |
| "security.workspace.trust.untrustedFiles": "newWindow", | |
| "emmet.syntaxProfiles": { | |
| "smarty": "html" | |
| }, | |
| "blade.format.enable": true, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "cSpell.userWords": ["Authenticatable", "Doesnt"], | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.inlineSuggest.enabled": true, | |
| "git.confirmSync": false, | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "emmet.triggerExpansionOnTab": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "workbench.colorTheme": "Learn with Sumit Theme - Dracula version", | |
| "editor.guides.bracketPairs": true, | |
| "editor.formatOnSaveMode": "modificationsIfAvailable", | |
| "php.validate.executablePath": "", | |
| "editor.minimap.enabled": false, | |
| "[blade]": { | |
| "editor.defaultFormatter": "shufo.vscode-blade-formatter" | |
| }, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "window.zoomLevel": 1, | |
| "window.commandCenter": true, | |
| "editor.accessibilitySupport": "off", | |
| "git.ignoreRebaseWarning": true, | |
| "cursor.cpp.disabledLanguages": ["yaml", "markdown"], | |
| "files.exclude": { | |
| "**/.idea": true, | |
| "**/.vscode": true | |
| }, | |
| "editor.minimap.autohide": true, | |
| "editor.stickyScroll.enabled": false, | |
| "editor.minimap.renderCharacters": false, | |
| "workbench.activityBar.orientation": "vertical", | |
| "laravel-pint.enable": true, | |
| "laravel-pint.configPath": "/Users/sani/projects/pint.json", | |
| "laravel-pint.executablePath": "/Users/sani/.composer/vendor/laravel/pint/builds/pint", | |
| "laravel-pint.preset": "psr12", | |
| "prettier.jsxSingleQuote": true, | |
| "prettier.singleQuote": true, | |
| "window.newWindowProfile": "Laravel & vue", | |
| "workbench.iconTheme": "material-icon-theme" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment