diff --git a/Brewfile b/Brewfile index 3c7dab5..625b5e8 100644 --- a/Brewfile +++ b/Brewfile @@ -37,7 +37,6 @@ brew "prettier" brew "ripgrep" brew "rustup-init" brew "starship" -brew "stgit" brew "tectonic" brew "texlab" brew "topgrade" @@ -75,7 +74,7 @@ cask "signal" cask "skim" cask "sublime-merge" cask "sublime-text" -cask "visual-studio-code" +cask "vscodium" cask "zoom" cask "zotero" cask "zulip" diff --git a/dot_config/chezmoi/chezmoi.toml b/dot_config/chezmoi/chezmoi.toml index ac54740..661daf4 100644 --- a/dot_config/chezmoi/chezmoi.toml +++ b/dot_config/chezmoi/chezmoi.toml @@ -1,3 +1,3 @@ [edit] - command = "code" - args = ["--wait"] \ No newline at end of file +command = "codium" +args = ["--wait"] diff --git a/dot_config/xonsh/rc.d/env.xsh b/dot_config/xonsh/rc.d/env.xsh index 295021e..77cf01f 100644 --- a/dot_config/xonsh/rc.d/env.xsh +++ b/dot_config/xonsh/rc.d/env.xsh @@ -26,7 +26,7 @@ $PATH = [ $AUTO_CD = True #> Default Editor $EDITOR = "nvim" -$VISUAL = "code" +$VISUAL = "codium" #> Monash Cluster $OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au" #> CMake settings diff --git a/private_Library/private_Application Support/private_VSCodium/User/settings.json b/private_Library/private_Application Support/private_VSCodium/User/settings.json new file mode 100644 index 0000000..5b1ba26 --- /dev/null +++ b/private_Library/private_Application Support/private_VSCodium/User/settings.json @@ -0,0 +1,31 @@ +{ + "cmake.buildDirectory": "${workspaceFolder}/build.nosync", + "cmake.configureOnOpen": false, + "cmake.generator": "Ninja Multi-Config", + "cmake.installPrefix": "${workspaceFolder}/build.nosync/install", + "editor.fontFamily": "Iosevka Slab, Iosevka, Menlo, Monaco, 'Courier New', monospace", + "editor.fontLigatures": true, + "editor.fontSize": 14, + "editor.formatOnSave": true, + "editor.insertSpaces": false, + "editor.tabSize": 2, + "editor.wordWrap": "on", + "extensions.ignoreRecommendations": true, + "files.autoSave": "onWindowChange", + "files.insertFinalNewline": true, + "lldb.consoleMode": "evaluate", + "ltex.additionalRules.enablePickyRules": true, + "ltex.language": "en-GB", + "python.formatting.blackPath": "/opt/homebrew/bin/black", + "python.formatting.provider": "black", + "rust-analyzer.debug.engine": "vadimcn.vscode-lldb", + "terminal.external.osxExec": "kitty.app", + "terminal.integrated.scrollback": 10000, + "terminal.integrated.shell.osx": "xonsh", + "window.autoDetectColorScheme": true, + "window.commandCenter": true, + "workbench.colorTheme": "Catppuccin Latte", + "workbench.preferredDarkColorTheme": "Catppuccin Macchiato", + "workbench.preferredLightColorTheme": "Catppuccin Latte", + "workbench.startupEditor": "none" +}