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

Switch current editor to VSCode

+9 -6
+2 -2
dot_config/bat/config
··· 1 - # Use simple ansi theme for bat 2 - --theme="ansi" 1 + # Use github theme for bat 2 + --theme="GitHub"
+3
dot_config/chezmoi/chezmoi.toml
··· 1 + [edit] 2 + command = "code" 3 + args = ["--wait"]
+4 -4
dot_config/xonsh/rc.d/env.xsh
··· 26 26 $AUTO_CD = True 27 27 #> Default Editor 28 28 $EDITOR = "nvim" 29 - $VISUAL = "subl" 29 + $VISUAL = "code" 30 30 #> Monash Cluster 31 31 $OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au" 32 32 #> CMake settings 33 33 $CMAKE_EXPORT_COMPILE_COMMANDS = "1" # output compile-commands.json for clangd 34 - $CMAKE_GENERATOR = "Sublime Text 2 - Ninja" # use Ninja generator by default 34 + $CMAKE_GENERATOR = "Ninja Multi-Config" # use Ninja generator by default 35 35 #> FZF 36 36 $FZF_DEFAULT_COMMAND = "fd --type f" 37 37 ··· 41 41 """This command takes a 42 42 """ 43 43 DARK_XONSH_STYLE = "stata-dark" 44 - DARK_KITTY_STYLE = "Mariana" 44 + DARK_KITTY_STYLE = "GitHub Dark" 45 45 LIGHT_XONSH_STYLE = "stata-light" 46 - LIGHT_KITTY_STYLE = "Breakers" 46 + LIGHT_KITTY_STYLE = "GitHub Light" 47 47 if len(args) == 0 or args[0] == "info": 48 48 print("dark" if $XONSH_COLOR_STYLE == DARK_XONSH_STYLE else "light") 49 49 elif args[0] == "set":