move bat theme to light/dark functions

This commit is contained in:
Gabriel Augendre 2024-11-26 15:17:16 +01:00
parent f18e5b802f
commit 00495ccacf
3 changed files with 2 additions and 2 deletions

View file

@ -17,8 +17,6 @@ set -gx VIRTUAL_ENV_DISABLE_PROMPT 1
set -gx LANG en_US.UTF-8 set -gx LANG en_US.UTF-8
set -gx BAT_THEME "Solarized (dark)"
set -gx GITLABBER_FOLDER_NAMING path set -gx GITLABBER_FOLDER_NAMING path
set -gx GITLABBER_CLONE_METHOD ssh set -gx GITLABBER_CLONE_METHOD ssh
set -gx GITLABBER_GIT_CONCURRENCY 10 set -gx GITLABBER_GIT_CONCURRENCY 10

View file

@ -1,4 +1,5 @@
function dark --description 'Set shell theme to dark mode, including neovim' function dark --description 'Set shell theme to dark mode, including neovim'
yes | fish_config theme save "Catppuccin Mocha" yes | fish_config theme save "Catppuccin Mocha"
set -Ux BAT_THEME "Catppuccin Mocha"
update_nvim_theme dark update_nvim_theme dark
end end

View file

@ -1,4 +1,5 @@
function light --description 'Set shell theme to light mode, including neovim' function light --description 'Set shell theme to light mode, including neovim'
yes | fish_config theme save "Catppuccin Latte" yes | fish_config theme save "Catppuccin Latte"
set -Ux BAT_THEME "Catppuccin Latte"
update_nvim_theme light update_nvim_theme light
end end