update truezen config

This commit is contained in:
siduck76 2021-07-17 01:04:13 +05:30
parent 5bb85b8176
commit f0b491cd94
1 changed files with 32 additions and 19 deletions

View File

@ -1,5 +1,3 @@
-- plugins made by @Pocco81 =)
local true_zen local true_zen
if if
not pcall( not pcall(
@ -13,15 +11,6 @@ end
true_zen.setup( true_zen.setup(
{ {
misc = {
on_off_commands = false,
ui_elements_commands = false,
cursor_by_mode = false,
before_minimalist_mode_shown = true,
before_minimalist_mode_hidden = true,
after_minimalist_mode_shown = true,
after_minimalist_mode_hidden = true
},
ui = { ui = {
bottom = { bottom = {
laststatus = 0, laststatus = 0,
@ -41,14 +30,24 @@ true_zen.setup(
}, },
modes = { modes = {
ataraxis = { ataraxis = {
left_padding = 37, left_padding = 32,
right_padding = 37, right_padding = 32,
top_padding = 2, top_padding = 1,
bottom_padding = 2, bottom_padding = 1,
just_do_it_for_me = false, ideal_writing_area_width = {0},
ideal_writing_area_width = 0, just_do_it_for_me = true,
keep_default_fold_fillchars = true, keep_default_fold_fillchars = true,
custome_bg = "#1e222a" custome_bg = "",
bg_configuration = true,
affected_higroups = {
NonText = {},
FoldColumn = {},
ColorColumn = {},
VertSplit = {},
StatusLine = {},
StatusLineNC = {},
SignColumn = {}
}
}, },
focus = { focus = {
margin_of_error = 5, margin_of_error = 5,
@ -56,8 +55,22 @@ true_zen.setup(
} }
}, },
integrations = { integrations = {
vim_gitgutter = false,
galaxyline = true, galaxyline = true,
nvim_bufferline = true 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
} }
} }
) )