1
0

Switch current editor to VSCode

This commit is contained in:
Jip J. Dekker 2022-09-20 09:31:37 +10:00
parent 984591b8c0
commit 652c3a36ae
No known key found for this signature in database
GPG Key ID: 517DF4A00618C9C3
3 changed files with 9 additions and 6 deletions

View File

@ -1,2 +1,2 @@
# Use simple ansi theme for bat # Use github theme for bat
--theme="ansi" --theme="GitHub"

View File

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

View File

@ -26,12 +26,12 @@ $PATH = [
$AUTO_CD = True $AUTO_CD = True
#> Default Editor #> Default Editor
$EDITOR = "nvim" $EDITOR = "nvim"
$VISUAL = "subl" $VISUAL = "code"
#> Monash Cluster #> Monash Cluster
$OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au" $OPTCLUSTER = "compute.optimisation-2020.cloud.edu.au"
#> CMake settings #> CMake settings
$CMAKE_EXPORT_COMPILE_COMMANDS = "1" # output compile-commands.json for clangd $CMAKE_EXPORT_COMPILE_COMMANDS = "1" # output compile-commands.json for clangd
$CMAKE_GENERATOR = "Sublime Text 2 - Ninja" # use Ninja generator by default $CMAKE_GENERATOR = "Ninja Multi-Config" # use Ninja generator by default
#> FZF #> FZF
$FZF_DEFAULT_COMMAND = "fd --type f" $FZF_DEFAULT_COMMAND = "fd --type f"
@ -41,9 +41,9 @@ def _theme(args):
"""This command takes a """This command takes a
""" """
DARK_XONSH_STYLE = "stata-dark" DARK_XONSH_STYLE = "stata-dark"
DARK_KITTY_STYLE = "Mariana" DARK_KITTY_STYLE = "GitHub Dark"
LIGHT_XONSH_STYLE = "stata-light" LIGHT_XONSH_STYLE = "stata-light"
LIGHT_KITTY_STYLE = "Breakers" LIGHT_KITTY_STYLE = "GitHub Light"
if len(args) == 0 or args[0] == "info": if len(args) == 0 or args[0] == "info":
print("dark" if $XONSH_COLOR_STYLE == DARK_XONSH_STYLE else "light") print("dark" if $XONSH_COLOR_STYLE == DARK_XONSH_STYLE else "light")
elif args[0] == "set": elif args[0] == "set":