astronvim/updater.lua

21 lines
1.2 KiB
Lua
Raw Permalink Normal View History

2023-01-14 13:02:17 +01:00
return {
2023-02-04 17:25:37 +01:00
--remote = "origin", -- remote to use
2023-01-20 10:54:22 +01:00
--channel = "stable", -- "stable" or "nightly"
channel = "nightly", -- "stable" or "nightly"
--version = "v2.11.7", -- "latest", tag name, or regex search like "v1.*" to only do updates before v2 (STABLE ONLY)
2023-02-04 16:46:27 +01:00
--version="latest",
2023-01-20 10:54:22 +01:00
branch = "v3", -- branch name (NIGHTLY ONLY)
--commit = nil, -- commit hash (NIGHTLY ONLY)
2023-02-04 17:25:37 +01:00
--pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only)
2023-01-14 13:02:17 +01:00
skip_prompts = false, -- skip prompts about breaking changes
show_changelog = true, -- show the changelog after performing an update
auto_reload = false, -- automatically reload and sync packer after a successful update
auto_quit = false, -- automatically quit the current session after a successful update
2023-01-20 10:54:22 +01:00
remotes = { -- easily add new remotes to track
["kjuulh/ranger.nvim"] = "https://git.front.kjuulh.io/kjuulh/ranger.nvim.git", -- full remote url
["kjuulh/dataviewjs"] = "https://git.front.kjuulh.io/kjuulh/dataviewjs.nvim.git", -- full remote url
-- ["remote2"] = "github_user/repo", -- GitHub user/repo shortcut,
-- ["remote3"] = "github_user", -- GitHub user assume AstroNvim fork
},
2023-01-14 13:02:17 +01:00
}