mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 22:56:33 +00:00
Add tokyonight to derived colors
This commit is contained in:
parent
b81e79976e
commit
77106e91de
@ -140,6 +140,8 @@ def get_nvim_colorscheme(
|
||||
colorscheme = "default"
|
||||
elif "Solarized" in terminal_profile:
|
||||
colorscheme = "solarized"
|
||||
elif "Tokyo Night" in terminal_profile:
|
||||
colorscheme = "tokyonight"
|
||||
|
||||
return colorscheme
|
||||
|
||||
@ -187,9 +189,14 @@ def get_fish_theme(
|
||||
fish_theme = "wombat"
|
||||
elif "Solarized" in terminal_profile:
|
||||
if is_dark:
|
||||
fish_theme = "solarized dark"
|
||||
fish_theme = "solarized_dark"
|
||||
else:
|
||||
fish_theme = "solarized light"
|
||||
fish_theme = "solarized_light"
|
||||
elif "Tokyo Night" in terminal_profile:
|
||||
if is_dark:
|
||||
fish_theme = "fish_tokyonight_night"
|
||||
else:
|
||||
fish_theme = "fish_tokyonight_day"
|
||||
|
||||
return fish_theme
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user