Skip to content

Commit

Permalink
chore(updater): until stable v3, use nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Feb 28, 2023
1 parent 877cec5 commit 683413b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions updater.lua
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
-- Configure AstroNvim updates
return {
remote = "origin", -- remote to use
channel = "stable", -- "stable" or "nightly"
version = "latest", -- "latest", tag name, or regex search like "v1.*" to only do updates before v2 (STABLE ONLY)
branch = "main", -- branch name (NIGHTLY ONLY)
commit = nil, -- commit hash (NIGHTLY ONLY)
pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only)
skip_prompts = false, -- skip prompts about breaking changes
show_changelog = true, -- show the changelog after performing an update
auto_quit = false, -- automatically quit the current session after a successful update
-- remote = "origin", -- remote to use
channel = "nightly", -- "stable" or "nightly"
-- version = "latest", -- "latest", tag name, or regex search like "v1.*" to only do updates before v2 (STABLE ONLY)
branch = "v3", -- branch name (NIGHTLY ONLY)
-- commit = nil, -- commit hash (NIGHTLY ONLY)
-- pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only)
-- skip_prompts = false, -- skip prompts about breaking changes
-- show_changelog = true, -- show the changelog after performing an update
-- auto_quit = false, -- automatically quit the current session after a successful update
-- remotes = { -- easily add new remotes to track
-- ["remote_name"] = "https://remote_url.come/repo.git", -- full remote url
-- ["remote2"] = "github_user/repo", -- GitHub user/repo shortcut,
Expand Down

0 comments on commit 683413b

Please sign in to comment.