neovim-config/lua/plugins/zenmode.lua

64 lines
1.5 KiB
Lua
Raw Normal View History

2021-07-09 03:44:04 +00:00
-- plugins made by @Pocco81 =)
local true_zen
if
not pcall(
function()
true_zen = require "true-zen"
end
)
then
return
end
2021-07-09 03:44:04 +00:00
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,
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 = {
left_padding = 37,
right_padding = 37,
top_padding = 2,
bottom_padding = 2,
just_do_it_for_me = false,
ideal_writing_area_width = 0,
keep_default_fold_fillchars = true,
custome_bg = "#1e222a"
2021-07-09 03:44:04 +00:00
},
focus = {
margin_of_error = 5,
focus_method = "experimental"
}
},
integrations = {
galaxyline = true,
nvim_bufferline = true
2021-07-09 03:44:04 +00:00
}
}
)