From dab0bfca80f4eb9feea4aa3048615d429934165d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Tue, 24 Feb 2026 00:30:16 +0100 Subject: [PATCH] nvim+kitty: dark theme nightfox, use kitty cursor trail --- kitty/.config/kitty/kitty.conf | 4 +++- nvim/.config/nvim/lua/plugins/colorscheme.lua | 2 +- xsession/bin/lupan-set-theme | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index 9c89a0a..9fc7362 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -15,6 +15,8 @@ open_url_with qutebrowser action_alias launch_tab_home launch --type tab --cwd=~ kitten_alias hints hints --hints-background-color red --hints-foreground-color white +cursor_trail 1 + map ctrl+shift+6 no_op 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 . # BEGIN_KITTY_THEME -# Kanagawa +# Nightfox include current-theme.conf # END_KITTY_THEME diff --git a/nvim/.config/nvim/lua/plugins/colorscheme.lua b/nvim/.config/nvim/lua/plugins/colorscheme.lua index e6774ca..50cd0fa 100644 --- a/nvim/.config/nvim/lua/plugins/colorscheme.lua +++ b/nvim/.config/nvim/lua/plugins/colorscheme.lua @@ -1,5 +1,5 @@ vim.pack.add({ "https://github.com/EdenEast/nightfox.nvim", "https://github.com/rebelot/kanagawa.nvim" }) local cs = require("config.colorscheme") -cs.set_colorschemes("kanagawa-wave", "dayfox") +cs.set_colorschemes("nightfox", "dayfox") cs.update_colorscheme() diff --git a/xsession/bin/lupan-set-theme b/xsession/bin/lupan-set-theme index a20506e..73b4c73 100755 --- a/xsession/bin/lupan-set-theme +++ b/xsession/bin/lupan-set-theme @@ -46,7 +46,7 @@ fi XSET=$(readlink -e ~/.config/xsettingsd/xsettingsd.conf) if [ "$THEME" = dark ]; then - kitten themes --reload-in=all Kanagawa + kitten themes --reload-in=all Nightfox elif [ "$THEME" = light ]; then kitten themes --reload-in=all Dayfox fi