1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
local true_zen = require("true-zen")
-- setup for TrueZen.nvim
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 = true,
shown_signcolumn = "no"
},
ataraxis = {
just_do_it_for_me = false,
left_padding = 40,
right_padding = 40,
top_padding = 0,
bottom_padding = 0,
custome_bg = "",
disable_bg_configuration = false,
disable_fillchars_configuration = false,
force_when_plus_one_window = false,
force_hide_statusline = false
},
focus = {
margin_of_error = 5,
focus_method = "experimental"
},
events = {
before_minimalist_mode_shown = false,
before_minimalist_mode_hidden = false,
after_minimalist_mode_shown = false,
after_minimalist_mode_hidden = false
},
integrations = {
integration_galaxyline = true,
integration_vim_airline = false,
integration_vim_powerline = false,
integration_tmux = false,
integration_express_line = false,
integration_gitgutter = false,
integration_vim_signify = false,
integration_limelight = false,
integration_tzfocus_tzataraxis = false
}
})
|