Last active
September 22, 2023 00:24
-
-
Save PillTime/e73de6d4a9d3194a62d37408df06ca0c to your computer and use it in GitHub Desktop.
VSCodium
This file contains 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
Even Better TOML (tamasfe.even-better-toml) | |
Fluent Icons (miguelsolorio.fluent-icons) | |
Gruvbox Theme (jdinhlife.gruvbox) | |
rust-analyzer (rust-lang.rust-analyzer) | |
Vim (vscodevim.vim) | |
vscode-icons (vscode-icons-team.vscode-icons) |
This file contains 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
{ | |
/* General editor settings */ | |
"editor.rulers": [80, 100, 120], | |
"editor.colorDecorators": false, | |
"editor.inlayHints.enabled": "offUnlessPressed", | |
"editor.lineNumbers": "relative", | |
"files.autoSave": "onFocusChange", | |
"workbench.startupEditor": "none", | |
"workbench.sideBar.location": "right", | |
"window.menuBarVisibility": "hidden", | |
"terminal.external.linuxExec": "konsole", | |
"terminal.integrated.cursorStyle": "underline", | |
"terminal.integrated.shellIntegration.enabled": false, | |
/* Theming */ | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.colorTheme": "Gruvbox Dark Hard", | |
"workbench.productIconTheme": "fluent-icons", | |
/* Minimap */ | |
"editor.minimap.side": "left", | |
"editor.minimap.renderCharacters": false, | |
/* Font */ | |
"editor.fontSize": 16, | |
"editor.fontFamily": "'FiraCode Nerd Font', monospace", | |
"editor.fontLigatures": "'cv06', 'ss03', 'cv16', 'cv30', 'ss08', 'ss09', 'ss06', 'ss07'", | |
/* File ends */ | |
"files.trimFinalNewlines": true, | |
"files.insertFinalNewline": true, | |
"files.trimTrailingWhitespace": true, | |
/* Disable self updates */ | |
"update.mode": "none", | |
"update.showReleaseNotes": false, | |
/* Disable VSCode's security */ | |
"security.workspace.trust.enabled": false, | |
"security.workspace.trust.banner": "never", | |
"security.workspace.trust.emptyWindow": false, | |
"security.workspace.trust.startupPrompt": "never", | |
"security.workspace.trust.untrustedFiles": "open", | |
/* Extensions settings */ | |
"rust-analyzer.server.path": "/home/carlos/.local/share/rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rust-analyzer", | |
"vsicons.dontShowNewVersionMessage": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment