The general configuration of my development environment and many other general computer things.

Switch editor from vscode to vscodium

dekker.one ccd4dd16 0cc93f75

verified
+35 -5
+1 -2
Brewfile
··· 37 37 brew "ripgrep" 38 38 brew "rustup-init" 39 39 brew "starship" 40 - brew "stgit" 41 40 brew "tectonic" 42 41 brew "texlab" 43 42 brew "topgrade" ··· 75 74 cask "skim" 76 75 cask "sublime-merge" 77 76 cask "sublime-text" 78 - cask "visual-studio-code" 77 + cask "vscodium" 79 78 cask "zoom" 80 79 cask "zotero" 81 80 cask "zulip"
+2 -2
dot_config/chezmoi/chezmoi.toml
··· 1 1 [edit] 2 - command = "code" 3 - args = ["--wait"] 2 + command = "codium" 3 + args = ["--wait"]
+1 -1
dot_config/xonsh/rc.d/env.xsh
··· 26 26 $AUTO_CD = True 27 27 #> Default Editor 28 28 $EDITOR = "nvim" 29 - $VISUAL = "code" 29 + $VISUAL = "codium" 30 30 #> Monash Cluster 31 31 $OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au" 32 32 #> CMake settings
+31
private_Library/private_Application Support/private_VSCodium/User/settings.json
··· 1 + { 2 + "cmake.buildDirectory": "${workspaceFolder}/build.nosync", 3 + "cmake.configureOnOpen": false, 4 + "cmake.generator": "Ninja Multi-Config", 5 + "cmake.installPrefix": "${workspaceFolder}/build.nosync/install", 6 + "editor.fontFamily": "Iosevka Slab, Iosevka, Menlo, Monaco, 'Courier New', monospace", 7 + "editor.fontLigatures": true, 8 + "editor.fontSize": 14, 9 + "editor.formatOnSave": true, 10 + "editor.insertSpaces": false, 11 + "editor.tabSize": 2, 12 + "editor.wordWrap": "on", 13 + "extensions.ignoreRecommendations": true, 14 + "files.autoSave": "onWindowChange", 15 + "files.insertFinalNewline": true, 16 + "lldb.consoleMode": "evaluate", 17 + "ltex.additionalRules.enablePickyRules": true, 18 + "ltex.language": "en-GB", 19 + "python.formatting.blackPath": "/opt/homebrew/bin/black", 20 + "python.formatting.provider": "black", 21 + "rust-analyzer.debug.engine": "vadimcn.vscode-lldb", 22 + "terminal.external.osxExec": "kitty.app", 23 + "terminal.integrated.scrollback": 10000, 24 + "terminal.integrated.shell.osx": "xonsh", 25 + "window.autoDetectColorScheme": true, 26 + "window.commandCenter": true, 27 + "workbench.colorTheme": "Catppuccin Latte", 28 + "workbench.preferredDarkColorTheme": "Catppuccin Macchiato", 29 + "workbench.preferredLightColorTheme": "Catppuccin Latte", 30 + "workbench.startupEditor": "none" 31 + }