feat(vscodium): track settings.json for VSCodium (#29)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/29
Co-authored-by: vlw <victor@vlw.se>
Co-committed-by: vlw <victor@vlw.se>
This commit is contained in:
Victor Westerlund 2025-06-30 18:04:27 +02:00 committed by Victor Westerlund
parent 5a9d264911
commit bd7efe5ccf
2 changed files with 69 additions and 0 deletions

3
.gitignore vendored
View file

@ -16,6 +16,9 @@
!.local/share/code-server/ !.local/share/code-server/
!.local/share/code-server/User/ !.local/share/code-server/User/
!.local/share/code-server/User/settings.json !.local/share/code-server/User/settings.json
!.local/share/VSCodium/
!.local/share/VSCodium/User/
!.local/share/VSCodium/User/settings.json
# Include this file # Include this file
!.gitignore !.gitignore

View file

@ -0,0 +1,66 @@
{
"editor.insertSpaces": false,
"RPC.showDebugging": false,
"RPC.showProblems": false,
"RPC.showStatusBar": false,
"RPC.showTime": false,
"RPC.showWorkspace": false,
"RPC.workspaceText": "Repo: {workspace}",
"RPC.idleTimeout": 300,
"workbench.editor.wrapTabs": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.renderControlCharacters": true,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"editor.fontFamily": "'JetBrains Mono',Consolas, 'Courier New', monospace",
"files.autoSave": "afterDelay",
"workbench.startupEditor": "none",
"security.workspace.trust.untrustedFiles": "open",
"editor.hover.delay": 500,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": false,
"yaml": false,
"plaintext": true,
"markdown": false
},
"git.ignoreMissingGitWarning": true,
"window.titleBarStyle": "custom",
"settingsSync.ignoredSettings": [
"editor.fontSize"
],
"git.confirmSync": false,
"git.autofetch": true,
"editor.bracketPairColorization.enabled": false,
"editor.fontSize": 15,
"[go]": {
"editor.formatOnSave": false
},
"editor.codeActionsOnSave": {
"source.organizeImports": "never"
},
"go.formatTool": "gofmt",
"remote.SSH.remotePlatform": {
"local.vlw.one": "linux",
"raspberrypi": "linux",
"local.vlw.se": "linux",
"wg.vlw.se": "linux"
},
"workbench.editor.closeEmptyGroups": false,
"editor.accessibilitySupport": "off",
"workbench.editor.enablePreview": false,
"git.openRepositoryInParentFolders": "never",
"editor.stickyScroll.enabled": false,
"debug.openDebug": "neverOpen",
"files.associations": {
".env*": "dotenv"
},
"editor.tokenColorCustomizations": {
"textMateRules": []
},
"dotenv.enableAutocloaking": false
}