27 lines
654 B
Lua
27 lines
654 B
Lua
local config = {
|
|
updater = {
|
|
remote = "origin",
|
|
channel = "stable",
|
|
version = "latest",
|
|
branch = "nightly",
|
|
commit = nil,
|
|
pin_plugins = nil,
|
|
skip_prompts = false,
|
|
show_changelog = true,
|
|
auto_quit = false,
|
|
remotes = {}
|
|
},
|
|
colorscheme = "catppuccin",
|
|
heirline = {
|
|
separators = {
|
|
left = { "", " " }, -- separator for the left side of the statusline
|
|
right = { " ", " " }, -- separator for the right side of the statusline
|
|
tab = { "", "" },
|
|
}
|
|
},
|
|
polish = function()
|
|
end
|
|
}
|
|
|
|
return config
|