summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-06-28 16:43:35 -0400
committerchristianchiarulli <[email protected]>2021-06-28 16:43:35 -0400
commitdef7b108200530165597b953b4db35a16d2554fd (patch)
treebb0b258aa6f35fa3f8a6980dbe8753233b119b71 /lua/plugins.lua
parent8004706d95717ea0729c3c999a0cc5b2dacb612f (diff)
new zen mode, other one didn't work with lazy loading
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua11
1 files changed, 4 insertions, 7 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index e5918cda..589b41c5 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -128,18 +128,15 @@ return require("packer").startup(function(use)
disable = not O.plugin.dashboard.active,
opt = true
}
- -- Zen Mode TODO this don't work with whichkey might gave to make this built in, may have to replace with folke zen
+ -- Zen Mode
use {
"folke/zen-mode.nvim",
cmd = "ZenMode",
+ -- event = "BufRead",
config = function()
- require("zen-mode").setup {
- -- your configuration comes here
- -- or leave it empty to use the default settings
- -- refer to the configuration section below
- }
+ require('lv-zen').config()
end,
- disable = not O.plugin.zen.active,
+ disable = not O.plugin.zen.active
}
-- matchup
use {