Created
October 3, 2025 08:47
-
-
Save celber/9764df9eb3f1b543233b522d7684c8a5 to your computer and use it in GitHub Desktop.
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
| { | |
| "workbench.colorTheme": "MacOS Modern Light - Xcode Default", | |
| "editor.insertSpaces": false, | |
| "terminal.integrated.rendererType": "dom", | |
| "remote.restoreForwardedPorts": true, | |
| "vscode-coverage-highlighter.wholeLine": true, | |
| "beautify.config": { | |
| "editor.tabSize": 2 | |
| }, | |
| "workbench.activityBar.visible": true, | |
| "editor.formatOnPaste": false, | |
| "editor.formatOnSave": false, | |
| "editor.formatOnType": false, | |
| // MacOS Modern Tweaks | |
| "editor.fontSize": 12, | |
| "editor.fontFamily": "\"FiraCode Nerd Font Mono\"", | |
| "editor.fontWeight": "normal", | |
| "window.nativeTabs": true, | |
| // Disable Tab File Icons | |
| // Disable Red Sidebar Errors | |
| "problems.decorations.enabled": false, | |
| // Workbench Color Tweaks | |
| "workbench.colorCustomizations": { | |
| "activityBarBadge.background": "#1a8bfb", // blue | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "editor.renderWhitespace": "all", | |
| "terminal.integrated.fontFamily": "\"FiraCode Nerd Font Mono\", monospace", | |
| "remote.SSH.remotePlatform": { | |
| "zombie.local": "linux", | |
| "s1.celber.pl": "linux", | |
| "192.168.88.60": "linux", | |
| "192.168.88.201": "linux", | |
| "zombie": "linux", | |
| "kiosk": "linux" | |
| }, | |
| "settingsSync.ignoredSettings": [ | |
| "editor.fontFamily", | |
| "terminal.integrated.fontFamily" | |
| ], | |
| "window.autoDetectColorScheme": true, | |
| "workbench.editor.showIcons": false, | |
| "workbench.preferredLightColorTheme": "MacOS Modern Light - Xcode Default", | |
| "workbench.preferredDarkColorTheme": "Hack The Box", | |
| "vscode-neovim.neovimExecutablePaths.win32": "C:\\tools\\neovim\\Neovim\\bin\\nvim.exe", | |
| "vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim", | |
| "explorer.confirmDragAndDrop": false, | |
| "typescript.suggest.autoImports": false, | |
| "git.autofetch": true, | |
| "editor.accessibilitySupport": "off", | |
| "files.associations": { | |
| "*.cps": "javascript" | |
| }, | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "git.confirmSync": false, | |
| "todomd.defaultFile": "/home/celber/Developer/Hekete/Frontend/TODO.md", | |
| "tabnine.experimentalAutoImports": true, | |
| "redhat.telemetry.enabled": false, | |
| "gitlens.gitCommands.skipConfirmations": [ | |
| "fetch:command", | |
| "stash-push:command", | |
| "switch:command", | |
| "branch-create:command" | |
| ], | |
| "editor.fontLigatures": true, | |
| "workbench.iconTheme": "vsc-jetbrains-icons-enhanced", | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "files.exclude": { | |
| "**/.trunk/*out": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.trunk/*out": true | |
| }, | |
| "trunk.trunkGrayOutNonBlockingIssues": false, | |
| "thunder-client.codeSnippetLanguage": "dart", | |
| "window.commandCenter": true, | |
| "editor.cursorBlinking": "phase", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "[nginx]": { | |
| "editor.defaultFormatter": "raynigon.nginx-formatter" | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment