dotfiles/.config/nvim/lua/plugins/zen-mode.lua
Sergio Laín f38ba04d54
feat(nvim): new scrollbar added
now im using neovim nightly (10.0) so i can replace the old scrollbar that i had for this one which
is more useful and cool!
2023-10-06 12:53:48 +02:00

14 lines
377 B
Lua

return {
{
"folke/zen-mode.nvim",
cmd = "ZenMode",
keys = { { "<leader>uz", "<cmd>ZenMode<cr>", desc = "Toggle Zen Mode" } },
opts = {
plugins = {
scrollview = { enabled = false },
satellite = { enabled = false },
gitsigns = { enabled = false },
},
},
},
}