nvim+kitty: dark theme nightfox, use kitty cursor trail

This commit is contained in:
2026-02-24 00:30:16 +01:00
parent 3b57990b9d
commit dab0bfca80
3 changed files with 5 additions and 3 deletions

View File

@@ -15,6 +15,8 @@ open_url_with qutebrowser
action_alias launch_tab_home launch --type tab --cwd=~ action_alias launch_tab_home launch --type tab --cwd=~
kitten_alias hints hints --hints-background-color red --hints-foreground-color white kitten_alias hints hints --hints-background-color red --hints-foreground-color white
cursor_trail 1
map ctrl+shift+6 no_op map ctrl+shift+6 no_op
map ctrl+shift+0 nth_window -1 map ctrl+shift+0 nth_window -1
@@ -64,6 +66,6 @@ map ctrl+alt+shift+w detach_window
map ctrl+alt+shift+x close_session . map ctrl+alt+shift+x close_session .
# BEGIN_KITTY_THEME # BEGIN_KITTY_THEME
# Kanagawa # Nightfox
include current-theme.conf include current-theme.conf
# END_KITTY_THEME # END_KITTY_THEME

View File

@@ -1,5 +1,5 @@
vim.pack.add({ "https://github.com/EdenEast/nightfox.nvim", "https://github.com/rebelot/kanagawa.nvim" }) vim.pack.add({ "https://github.com/EdenEast/nightfox.nvim", "https://github.com/rebelot/kanagawa.nvim" })
local cs = require("config.colorscheme") local cs = require("config.colorscheme")
cs.set_colorschemes("kanagawa-wave", "dayfox") cs.set_colorschemes("nightfox", "dayfox")
cs.update_colorscheme() cs.update_colorscheme()

View File

@@ -46,7 +46,7 @@ fi
XSET=$(readlink -e ~/.config/xsettingsd/xsettingsd.conf) XSET=$(readlink -e ~/.config/xsettingsd/xsettingsd.conf)
if [ "$THEME" = dark ]; then if [ "$THEME" = dark ]; then
kitten themes --reload-in=all Kanagawa kitten themes --reload-in=all Nightfox
elif [ "$THEME" = light ]; then elif [ "$THEME" = light ]; then
kitten themes --reload-in=all Dayfox kitten themes --reload-in=all Dayfox
fi fi