neovim-config/lua/plugins/zenmode.lua

71 lines
1.9 KiB
Lua
Raw Normal View History

local present, true_zen = pcall(require, "true-zen")
if not present then
return
end
2021-07-09 03:44:04 +00:00
true_zen.setup(
{
ui = {
bottom = {
laststatus = 0,
ruler = false,
showmode = false,
showcmd = false,
cmdheight = 1
2021-07-09 03:44:04 +00:00
},
top = {
showtabline = 0
2021-07-09 03:44:04 +00:00
},
left = {
number = false,
relativenumber = false,
signcolumn = "no"
2021-07-09 03:44:04 +00:00
}
},
modes = {
ataraxis = {
2021-07-16 19:34:13 +00:00
left_padding = 32,
right_padding = 32,
top_padding = 1,
bottom_padding = 1,
ideal_writing_area_width = {0},
2021-08-09 16:00:17 +00:00
auto_padding = true,
keep_default_fold_fillchars = true,
2021-07-16 19:34:13 +00:00
custome_bg = "",
bg_configuration = true,
affected_higroups = {
NonText = {},
FoldColumn = {},
ColorColumn = {},
VertSplit = {},
StatusLine = {},
StatusLineNC = {},
SignColumn = {}
}
2021-07-09 03:44:04 +00:00
},
focus = {
margin_of_error = 5,
focus_method = "experimental"
}
},
integrations = {
2021-07-16 19:34:13 +00:00
vim_gitgutter = false,
galaxyline = true,
2021-07-16 19:34:13 +00:00
tmux = false,
gitsigns = false,
nvim_bufferline = true,
limelight = false,
vim_airline = false,
vim_powerline = false,
vim_signify = false,
express_line = false,
lualine = false
},
misc = {
on_off_commands = false,
ui_elements_commands = false,
cursor_by_mode = false
2021-07-09 03:44:04 +00:00
}
}
)