1
0

Switch editor from vscode to vscodium

This commit is contained in:
Jip J. Dekker 2023-05-12 09:55:16 +10:00
parent 0cc93f7527
commit ccd4dd1684
No known key found for this signature in database
4 changed files with 35 additions and 5 deletions

View File

@ -37,7 +37,6 @@ brew "prettier"
brew "ripgrep" brew "ripgrep"
brew "rustup-init" brew "rustup-init"
brew "starship" brew "starship"
brew "stgit"
brew "tectonic" brew "tectonic"
brew "texlab" brew "texlab"
brew "topgrade" brew "topgrade"
@ -75,7 +74,7 @@ cask "signal"
cask "skim" cask "skim"
cask "sublime-merge" cask "sublime-merge"
cask "sublime-text" cask "sublime-text"
cask "visual-studio-code" cask "vscodium"
cask "zoom" cask "zoom"
cask "zotero" cask "zotero"
cask "zulip" cask "zulip"

View File

@ -1,3 +1,3 @@
[edit] [edit]
command = "code" command = "codium"
args = ["--wait"] args = ["--wait"]

View File

@ -26,7 +26,7 @@ $PATH = [
$AUTO_CD = True $AUTO_CD = True
#> Default Editor #> Default Editor
$EDITOR = "nvim" $EDITOR = "nvim"
$VISUAL = "code" $VISUAL = "codium"
#> Monash Cluster #> Monash Cluster
$OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au" $OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au"
#> CMake settings #> CMake settings

View File

@ -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"
}