Last active
December 16, 2025 11:18
-
-
Save sotsugov/4add069f14011c851a7a73fac6665f85 to your computer and use it in GitHub Desktop.
configs (ghostty, code, sublime)
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
| keybind = ctrl+x=new_split:right | |
| keybind = ctrl+z=close_surface | |
| theme = "tokyonight" | |
| background = #090909 | |
| font-family = "Berkeley Mono" | |
| font-thicken | |
| copy-on-select = clipboard | |
| cursor-style = block | |
| cursor-style-blink = false | |
| mouse-hide-while-typing = true | |
| link-url = true | |
| window-padding-x = 20 | |
| window-padding-y = 20 | |
| window-vsync = 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
| { | |
| "files.encoding": "utf8", | |
| "telemetry.telemetryLevel": "off", | |
| "editor.fontFamily": "Hack", | |
| "editor.lineHeight": 16, | |
| "editor.fontLigatures": "off", | |
| "editor.detectIndentation": true, | |
| "editor.renderWhitespace": "selection", | |
| "files.insertFinalNewline": true, | |
| "files.hotExit": "off", | |
| "editor.matchBrackets": "always", | |
| "editor.tabSize": 2, | |
| "files.trimTrailingWhitespace": true, | |
| "editor.useTabStops": true, | |
| "editor.wordWrap": "off", | |
| "editor.formatOnPaste": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", | |
| "editor.rulers": [99], | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "prettier.singleQuote": true, | |
| "prettier.trailingComma": "all", | |
| "[markdown]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.renderControlCharacters": true, | |
| "editor.suggestSelection": "first", | |
| "explorer.confirmDelete": false, | |
| "cSpell.language": "en-GB", | |
| "explorer.confirmDragAndDrop": false, | |
| "git.confirmSync": false, | |
| "terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)", | |
| "git.enableSmartCommit": true, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "material-icon-theme.hidesExplorerArrows": false, | |
| "material-icon-theme.saturation": 1, | |
| "workbench.colorTheme": "Tokyo Night", | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.guides.bracketPairs": "active", | |
| "editor.unicodeHighlight.invisibleCharacters": false, | |
| "gitlens.advanced.messages": { | |
| "suppressGitMissingWarning": true | |
| }, | |
| "window.menuBarVisibility": "toggle", | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "terminal.integrated.fontFamily": "Hack", | |
| "[dockerfile]": { | |
| "editor.defaultFormatter": "ms-azuretools.vscode-docker" | |
| }, | |
| "editor.unicodeHighlight.allowedLocales": { | |
| "ru": true | |
| }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "scm.inputFontFamily": "Hack", | |
| "debug.console.fontFamily": "Hack", | |
| "debug.console.fontSize": 12, | |
| "markdown.preview.fontSize": 12, | |
| "terminal.integrated.fontSize": 12, | |
| "lldb.suppressUpdateNotifications": true, | |
| "workbench.startupEditor": "none", | |
| "terminal.integrated.profiles.windows": { | |
| "PowerShell": { | |
| "source": "PowerShell", | |
| "icon": "terminal-powershell" | |
| }, | |
| "Command Prompt": { | |
| "path": [ | |
| "${env:windir}\\Sysnative\\cmd.exe", | |
| "${env:windir}\\System32\\cmd.exe" | |
| ], | |
| "args": [], | |
| "icon": "terminal-cmd" | |
| }, | |
| "Git Bash": { | |
| "source": "Git Bash" | |
| }, | |
| "Ubuntu (WSL)": { | |
| "path": "C:\\Windows\\System32\\wsl.exe", | |
| "args": ["-d", "Ubuntu"] | |
| } | |
| }, | |
| "github.gitProtocol": "ssh", | |
| "git.autofetch": true, | |
| "update.showReleaseNotes": false, | |
| "git.enableCommitSigning": true, | |
| "editor.fontSize": 12, | |
| "[vue]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| } | |
| } |
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
| { | |
| "color_inactive_tabs": true, | |
| "color_scheme": "Packages/Enki Theme/scheme/Enki-Tokyo-Night.tmTheme", | |
| "default_encoding": "UTF-8", | |
| "font_face": "Hack", | |
| "font_size": 9, | |
| "detect_indentation": true, | |
| "dictionary": "Packages/Language - English/en_GB.dic", | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "file_exclude_patterns": | |
| [ | |
| ".DS_Store", | |
| "Desktop.ini", | |
| "*.pyc", | |
| "._*", | |
| "Thumbs.db", | |
| ".Spotlight-V100", | |
| ".Trashes" | |
| ], | |
| "folder_exclude_patterns": | |
| [ | |
| ".git", | |
| "node_modules" | |
| ], | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, | |
| "hot_exit": false, | |
| "ignored_packages": | |
| [ | |
| "SideBarEnhancements", | |
| "Vintage" | |
| ], | |
| "line_padding_bottom": 0, | |
| "match_brackets": true, | |
| "match_brackets_angle": true, | |
| "remember_open_files": true, | |
| "rulers": | |
| [ | |
| 100 | |
| ], | |
| "show_encoding": true, | |
| "show_line_endings": true, | |
| "tab_size": 4, | |
| "tabs_small": true, | |
| "theme": "Adaptive.sublime-theme", | |
| "translate_tabs_to_spaces": true, | |
| "trim_trailing_white_space_on_save": true, | |
| "use_tab_stops": true, | |
| "word_wrap": true, | |
| "wrap_width": 99 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment