diff options
| author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-08-20 11:06:34 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-08-20 11:06:34 +0200 | 
| commit | 0fc1e423097485035bd6c1f19d64ce8424387ca9 (patch) | |
| tree | 82abdd2dc427f864bd187b28511dd43e280ac2ce | |
| parent | 08b5e99f53fc5170d35de3f474c7df5ae1fac62f (diff) | |
chore: bump plugins version (#2895)
| -rw-r--r-- | lua/lvim/core/bufferline.lua | 4 | ||||
| -rw-r--r-- | snapshots/default.json | 42 | ||||
| -rw-r--r-- | utils/ci/generate_new_lockfile.lua | 3 | 
3 files changed, 25 insertions, 24 deletions
| diff --git a/lua/lvim/core/bufferline.lua b/lua/lvim/core/bufferline.lua index 28e0f06d..7e8f1376 100644 --- a/lua/lvim/core/bufferline.lua +++ b/lua/lvim/core/bufferline.lua @@ -45,10 +45,10 @@ M.config = function()      },      highlights = {        background = { -        gui = "italic", +        italic = true,        },        buffer_selected = { -        gui = "bold", +        bold = true,        },      },      options = { diff --git a/snapshots/default.json b/snapshots/default.json index e5bc50a7..3ab142c0 100644 --- a/snapshots/default.json +++ b/snapshots/default.json @@ -1,18 +1,18 @@  {    "Comment.nvim": { -    "commit": "fe9bbdb" +    "commit": "350bf0c"    },    "FixCursorHold.nvim": {      "commit": "5aa5ff1"    },    "LuaSnip": { -    "commit": "c599c56" +    "commit": "faa5257"    },    "alpha-nvim": {      "commit": "d688f46"    },    "bufferline.nvim": { -    "commit": "2e5d92e" +    "commit": "13a532e"    },    "cmp-buffer": {      "commit": "3022dbc" @@ -27,13 +27,13 @@      "commit": "a9de941"    },    "dap-buddy.nvim": { -    "commit": "bbda2b0" +    "commit": "3679132"    },    "friendly-snippets": { -    "commit": "7339def" +    "commit": "6227548"    },    "gitsigns.nvim": { -    "commit": "9c3ca02" +    "commit": "79c55eb"    },    "lua-dev.nvim": {      "commit": "54149d1" @@ -42,25 +42,25 @@      "commit": "c0510dd"    },    "mason-lspconfig.nvim": { -    "commit": "3cbd87f" +    "commit": "d9365e7"    },    "mason.nvim": { -    "commit": "3458edb" +    "commit": "5dbb22a"    },    "nlsp-settings.nvim": { -    "commit": "e5c11a6" +    "commit": "48d02d1"    },    "null-ls.nvim": { -    "commit": "5b745e5" +    "commit": "9d1f8dc"    },    "nvim-autopairs": { -    "commit": "ca89ab9" +    "commit": "0a18e10"    },    "nvim-cmp": { -    "commit": "706371f" +    "commit": "b1ebdb0"    },    "nvim-dap": { -    "commit": "66d33b7" +    "commit": "ad8b0de"    },    "nvim-lspconfig": {      "commit": "da7461b" @@ -69,13 +69,13 @@      "commit": "60bb6bf"    },    "nvim-tree.lua": { -    "commit": "261a5c3" +    "commit": "81eb718"    },    "nvim-treesitter": { -    "commit": "e7b5e92" +    "commit": "2bb9bb7"    },    "nvim-ts-context-commentstring": { -    "commit": "4befb89" +    "commit": "37a97a0"    },    "nvim-web-devicons": {      "commit": "2d02a56" @@ -84,7 +84,7 @@      "commit": "b00dd21"    },    "packer.nvim": { -    "commit": "afab895" +    "commit": "90b323b"    },    "plenary.nvim": {      "commit": "31807ee" @@ -96,19 +96,19 @@      "commit": "090bb11"    },    "schemastore.nvim": { -    "commit": "cba478d" +    "commit": "539a2d3"    },    "structlog.nvim": {      "commit": "232a8e2"    },    "telescope-fzf-native.nvim": { -    "commit": "6a33ece" +    "commit": "6791f74"    },    "telescope.nvim": { -    "commit": "8f80e82" +    "commit": "5103387"    },    "toggleterm.nvim": { -    "commit": "6236642" +    "commit": "62683d9"    },    "which-key.nvim": {      "commit": "f03a259" diff --git a/utils/ci/generate_new_lockfile.lua b/utils/ci/generate_new_lockfile.lua index fd10775c..8eef5184 100644 --- a/utils/ci/generate_new_lockfile.lua +++ b/utils/ci/generate_new_lockfile.lua @@ -70,6 +70,7 @@ local function write_lockfile(verbose)        name = name,        url = url,        commit = commit, +      branch = plugin.branch or "HEAD",      })    end @@ -90,7 +91,7 @@ local function write_lockfile(verbose)        }      end -    local handle = call_proc("git", { args = { "ls-remote", entry.url, "HEAD" } }, on_done) +    local handle = call_proc("git", { args = { "ls-remote", entry.url, entry.branch } }, on_done)      assert(handle)      table.insert(active_jobs, handle)    end | 
