
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!
14 lines
377 B
Lua
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 },
|
|
},
|
|
},
|
|
},
|
|
}
|