20 lines
340 B
Lua
20 lines
340 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",
|
||
|
polish = function()
|
||
|
end
|
||
|
}
|
||
|
|
||
|
return config
|