From 1a2b5068d7358e7b3cfaf5355be434ccd576a0f0 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Wed, 20 Nov 2024 07:11:38 -0500 Subject: [PATCH] add zen-mode config for kitty kitty.conf - allow remote control zen-mode.lua - add initial kitty options --- .config/kitty/kitty.conf | 6 +++--- .config/nvim/lua/plugins/zen-mode.lua | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index e399804..c715159 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -1095,7 +1095,7 @@ background_blur 0 #: multiplicative with background_tint, it can be used to lighten the #: tint over the window gaps for a *separated* look. -# dim_opacity 0.4 + dim_opacity 0.4 #: How much to dim text that has the DIM/FAINT attribute set. One #: means no dimming and zero means fully dimmed (i.e. invisible). @@ -1255,7 +1255,7 @@ background_blur 0 #: See rc_custom_auth for details. -# allow_remote_control no +allow_remote_control socket-only #: Allow other programs to control kitty. If you turn this on, other #: programs can control all aspects of kitty, including sending text @@ -1284,7 +1284,7 @@ background_blur 0 #: yes #: Remote control requests are always accepted. -# listen_on none +listen_on unix:/tmp/kitty #: Listen to the specified socket for remote control connections. Note #: that this will apply to all kitty instances. It can be overridden diff --git a/.config/nvim/lua/plugins/zen-mode.lua b/.config/nvim/lua/plugins/zen-mode.lua index 3987e7c..d69956d 100644 --- a/.config/nvim/lua/plugins/zen-mode.lua +++ b/.config/nvim/lua/plugins/zen-mode.lua @@ -12,6 +12,10 @@ return { enabled = true, font = "16", }, + kitty = { + enabled = true, + font = "+4", + }, }, }, }