From f0b491cd94c27c67ccc8a446d23ae3c0f1d0132b Mon Sep 17 00:00:00 2001 From: siduck76 Date: Sat, 17 Jul 2021 01:04:13 +0530 Subject: [PATCH] update truezen config --- lua/plugins/zenmode.lua | 51 ++++++++++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 19 deletions(-) diff --git a/lua/plugins/zenmode.lua b/lua/plugins/zenmode.lua index 4d99b98..4a49f5d 100644 --- a/lua/plugins/zenmode.lua +++ b/lua/plugins/zenmode.lua @@ -1,5 +1,3 @@ --- plugins made by @Pocco81 =) - local true_zen if not pcall( @@ -13,15 +11,6 @@ end 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 = { bottom = { laststatus = 0, @@ -41,14 +30,24 @@ true_zen.setup( }, modes = { ataraxis = { - left_padding = 37, - right_padding = 37, - top_padding = 2, - bottom_padding = 2, - just_do_it_for_me = false, - ideal_writing_area_width = 0, + left_padding = 32, + right_padding = 32, + top_padding = 1, + bottom_padding = 1, + ideal_writing_area_width = {0}, + just_do_it_for_me = true, keep_default_fold_fillchars = true, - custome_bg = "#1e222a" + custome_bg = "", + bg_configuration = true, + affected_higroups = { + NonText = {}, + FoldColumn = {}, + ColorColumn = {}, + VertSplit = {}, + StatusLine = {}, + StatusLineNC = {}, + SignColumn = {} + } }, focus = { margin_of_error = 5, @@ -56,8 +55,22 @@ true_zen.setup( } }, integrations = { + vim_gitgutter = false, 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 } } )