1a2b5068d7
kitty.conf - allow remote control zen-mode.lua - add initial kitty options
22 lines
483 B
Lua
22 lines
483 B
Lua
return {
|
|
"folke/zen-mode.nvim",
|
|
opts = {
|
|
window = { signcolumn = true },
|
|
plugins = {
|
|
options = { enabled = true },
|
|
twilight = { enabled = true },
|
|
gitsigns = { enabled = true },
|
|
tmux = { enabled = true },
|
|
todo = { enabled = true },
|
|
alacritty = {
|
|
enabled = true,
|
|
font = "16",
|
|
},
|
|
kitty = {
|
|
enabled = true,
|
|
font = "+4",
|
|
},
|
|
},
|
|
},
|
|
}
|