diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 21:15:44 +0200 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 21:15:44 +0200 | 
| commit | 82779fc7fbb42f5f97bf5840d3248ad84a63c095 (patch) | |
| tree | 7d8327aa0f7eeea7fed99b69c554eb19c671ef29 /lua/config/zen.lua | |
| parent | 4ec6fb5118f95f00dbacdcf0470e0f9fffd86abc (diff) | |
| parent | c561be2e3e71c226985640320559e3bf5e1c7034 (diff) | |
feat(fennel): migration
Diffstat (limited to 'lua/config/zen.lua')
| -rw-r--r-- | lua/config/zen.lua | 28 | 
1 files changed, 0 insertions, 28 deletions
diff --git a/lua/config/zen.lua b/lua/config/zen.lua deleted file mode 100644 index b54442d..0000000 --- a/lua/config/zen.lua +++ /dev/null @@ -1,28 +0,0 @@ --- Zen mode - -local status_ok, zen_mode = pcall(require, "zen-mode") -if not status_ok then -  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 }, -  }, -}  |