astronvim-user-config/init.lua

27 lines
654 B
Lua
Raw Normal View History

2023-12-19 00:55:54 +00:00
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
2023-12-19 00:55:54 +00:00
}
return config