9ffddb6b52
* move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
69 lines
1.5 KiB
Lua
69 lines
1.5 KiB
Lua
local present, true_zen = pcall(require, "true-zen")
|
|
if not present then
|
|
return
|
|
end
|
|
|
|
true_zen.setup {
|
|
ui = {
|
|
bottom = {
|
|
cmdheight = 1,
|
|
laststatus = 0,
|
|
ruler = false,
|
|
showmode = false,
|
|
showcmd = false,
|
|
},
|
|
top = {
|
|
showtabline = 0,
|
|
},
|
|
left = {
|
|
number = false,
|
|
relativenumber = false,
|
|
signcolumn = "no",
|
|
},
|
|
},
|
|
modes = {
|
|
ataraxis = {
|
|
left_padding = 32,
|
|
right_padding = 32,
|
|
top_padding = 1,
|
|
bottom_padding = 1,
|
|
ideal_writing_area_width = { 0 },
|
|
auto_padding = true,
|
|
keep_default_fold_fillchars = true,
|
|
custome_bg = "",
|
|
bg_configuration = true,
|
|
affected_higroups = {
|
|
NonText = {},
|
|
FoldColumn = {},
|
|
ColorColumn = {},
|
|
VertSplit = {},
|
|
StatusLine = {},
|
|
StatusLineNC = {},
|
|
SignColumn = {},
|
|
},
|
|
},
|
|
focus = {
|
|
margin_of_error = 5,
|
|
focus_method = "experimental",
|
|
},
|
|
},
|
|
integrations = {
|
|
vim_gitgutter = false,
|
|
galaxyline = 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,
|
|
},
|
|
}
|