Added zenmode to UI configuration

Signed-off-by: C4 Patino <c4patino@gmail.com>
This commit is contained in:
Ceferino Patino 2024-09-15 15:15:47 -05:00
commit baefd4290f
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
2 changed files with 15 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./lualine.nix
./noice.nix
./nvim-notify.nix
./zenmode.nix
];
colorschemes.tokyonight = {

14
config/ui/zenmode.nix Normal file
View file

@ -0,0 +1,14 @@
{
keymaps = [
{
mode = "n";
key = "<leader>zz";
action = "<cmd>ZenMode<cr>";
}
];
plugins.zen-mode = {
enable = true;
settings.window.width = 150;
};
}