summaryrefslogtreecommitdiff
path: root/lua/config/zen.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-22 16:44:32 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-22 16:44:32 +0100
commit7a60f2d61c44cdba85cbcf10b561b0401e9b105a (patch)
tree0f92b1e21f84c907bcd1c373625960d2834dc326 /lua/config/zen.lua
parentc22beb43a4526372abbd6c3dab48051e6b4e2a20 (diff)
fix: format with stylua config
Diffstat (limited to 'lua/config/zen.lua')
-rw-r--r--lua/config/zen.lua44
1 files changed, 22 insertions, 22 deletions
diff --git a/lua/config/zen.lua b/lua/config/zen.lua
index c221ef1..b54442d 100644
--- a/lua/config/zen.lua
+++ b/lua/config/zen.lua
@@ -2,27 +2,27 @@
local status_ok, zen_mode = pcall(require, "zen-mode")
if not status_ok then
- return
+ return
end
-zen_mode.setup({
- window = {
- backdrop = 1,
- height = 1, -- height of the Zen window
- width = 120,
- options = {
- signcolumn = "no", -- disable signcolumn
- number = false, -- disable number column
- relativenumber = false, -- disable relative numbers
- -- cursorline = false, -- disable cursorline
- -- cursorcolumn = false, -- disable cursor column
- -- foldcolumn = "0", -- disable fold column
- -- list = false, -- disable whitespace characters
- },
- },
- plugins = {
- gitsigns = { enabled = false }, -- disables git signs
- tmux = { enabled = true },
- twilight = { enabled = true },
- },
-})
+zen_mode.setup {
+ window = {
+ backdrop = 1,
+ height = 1, -- height of the Zen window
+ width = 120,
+ options = {
+ signcolumn = "no", -- disable signcolumn
+ number = false, -- disable number column
+ relativenumber = false, -- disable relative numbers
+ -- cursorline = false, -- disable cursorline
+ -- cursorcolumn = false, -- disable cursor column
+ -- foldcolumn = "0", -- disable fold column
+ -- list = false, -- disable whitespace characters
+ },
+ },
+ plugins = {
+ gitsigns = { enabled = false }, -- disables git signs
+ tmux = { enabled = true },
+ twilight = { enabled = true },
+ },
+}