mirror of
https://github.com/Crocmagnon/dotfiles.git
synced 2024-12-22 05:41:51 +01:00
move bat theme to light/dark functions
This commit is contained in:
parent
f18e5b802f
commit
00495ccacf
3 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,6 @@ set -gx VIRTUAL_ENV_DISABLE_PROMPT 1
|
|||
|
||||
set -gx LANG en_US.UTF-8
|
||||
|
||||
set -gx BAT_THEME "Solarized (dark)"
|
||||
|
||||
set -gx GITLABBER_FOLDER_NAMING path
|
||||
set -gx GITLABBER_CLONE_METHOD ssh
|
||||
set -gx GITLABBER_GIT_CONCURRENCY 10
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
function dark --description 'Set shell theme to dark mode, including neovim'
|
||||
yes | fish_config theme save "Catppuccin Mocha"
|
||||
set -Ux BAT_THEME "Catppuccin Mocha"
|
||||
update_nvim_theme dark
|
||||
end
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
function light --description 'Set shell theme to light mode, including neovim'
|
||||
yes | fish_config theme save "Catppuccin Latte"
|
||||
set -Ux BAT_THEME "Catppuccin Latte"
|
||||
update_nvim_theme light
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue