summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-13 21:57:49 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-13 21:57:49 +0100
commitf75ad229a77f75fbf0b8469b98106b2019e0b694 (patch)
tree70c1ef54042b6e6369022bfb237e8028e9574e27 /lua/plugins.lua
parentd4824e3fe6a9bbe6ee53ed0b4546818a0dc9e97e (diff)
Add zen mode
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index f993785..9cbb5ca 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -43,4 +43,13 @@ return {
{ "goolord/alpha-nvim" },
{ "antoinemadec/FixCursorHold.nvim" }, -- This is needed to fix lsp doc highlight
{ "folke/which-key.nvim" },
+ { "folke/zen-mode.nvim",
+ 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
+ }
+ end
+ },
}