Skip to content

Commit

Permalink
(nvim) Add ZenMode
Browse files Browse the repository at this point in the history
  • Loading branch information
emilford committed Dec 27, 2021
1 parent fb01929 commit e156d12
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .config/nvim/lua/em/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ return require("packer").startup(function()
use {"coderifous/textobj-word-column.vim"}
use {"dhruvasagar/vim-zoom"}
use {"ervandew/supertab"}
use {"folke/zen-mode.nvim"}
use {"glepnir/lspsaga.nvim"}
use {"hrsh7th/cmp-nvim-lsp"}
use {"hrsh7th/cmp-buffer"}
Expand Down
23 changes: 23 additions & 0 deletions .config/nvim/plugin/zen-mode.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
require("zen-mode").setup {
window = {
width = 80,
options = {
signcolumn = "no",
number = false,
cursorline = false,
cursorcolumn = false,
},
},
plugins = {
options = {
enabled = true,
ruler = false,
showcmd = false,
},
tmux = { enabled = true },
kitty = {
enabled = true,
font = "+2"
},
},
}

0 comments on commit e156d12

Please sign in to comment.