Files
dotfiles/.config/nvim/lua/plugins/zen-mode.lua
T

35 lines
800 B
Lua

return {
'folke/zen-mode.nvim',
dependencies = {
'folke/twilight.nvim',
},
cmd = 'ZenMode',
opts = {
window = {
width = 0.75,
signcolumn = false,
},
plugins = {
options = { enabled = true },
twilight = { enabled = true },
gitsigns = { enabled = true },
tmux = { enabled = true },
todo = { enabled = true },
alacritty = {
enabled = true,
font = '16',
},
wezterm = {
enabled = true,
font = '+4',
},
kitty = {
-- INFO: not working in tmux sessions
-- unable to get $KITTY_LISTEN_ON to update on attach
enabled = true,
font = '+4',
},
},
},
}