add TrueZen.nvim plugin
This commit is contained in:
parent
2c1af5727a
commit
41e059ac2b
7 changed files with 71 additions and 20 deletions
33
lua/zenmode/lua.lua
Normal file
33
lua/zenmode/lua.lua
Normal file
|
@ -0,0 +1,33 @@
|
|||
require("true-zen").setup(
|
||||
{
|
||||
true_false_commands = false,
|
||||
cursor_by_mode = false,
|
||||
bottom = {
|
||||
hidden_laststatus = 0,
|
||||
hidden_ruler = false,
|
||||
hidden_showmode = false,
|
||||
hidden_showcmd = false,
|
||||
hidden_cmdheight = 1,
|
||||
shown_laststatus = 2,
|
||||
shown_ruler = true,
|
||||
shown_showmode = false,
|
||||
shown_showcmd = false,
|
||||
shown_cmdheight = 1
|
||||
},
|
||||
top = {
|
||||
hidden_showtabline = 0,
|
||||
shown_showtabline = 2
|
||||
},
|
||||
left = {
|
||||
hidden_number = false,
|
||||
hidden_relativenumber = false,
|
||||
hidden_signcolumn = "no",
|
||||
shown_number = true,
|
||||
shown_relativenumber = false,
|
||||
shown_signcolumn = "no"
|
||||
},
|
||||
ataraxis = {
|
||||
left_right_padding = 40
|
||||
}
|
||||
}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue