add custom plugins
This commit is contained in:
parent
c80a77488b
commit
693e7c3053
10 changed files with 175 additions and 1 deletions
15
lua/custom/plugins/zenmode.lua
Normal file
15
lua/custom/plugins/zenmode.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
"folke/zen-mode.nvim",
|
||||
version = "*",
|
||||
config = function()
|
||||
require("zen-mode").setup {
|
||||
window = {
|
||||
backdrop = 0.8,
|
||||
width = 100,
|
||||
},
|
||||
plugins = {
|
||||
gitsigns = { enabled = false },
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue