chore: bump core-plugins version (#2031)

This commit is contained in:
kylo252 2021-12-04 14:02:47 +01:00 committed by GitHub
parent 7b753ea627
commit ef5ca00df5
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 15 deletions

View file

@ -9,7 +9,12 @@ install-neovim-binary:
bash ./utils/installer/install-neovim-from-release
uninstall:
@echo TODO: this is currently not supported
@echo Starting LunarVim Uninstaller
bash ./utils/installer/uninstall.sh
generate_plugins_sha:
@echo generating core-plugins latest SHA list
lvim --headless -c 'lua require("lvim.utils").generate_plugins_sha("latest-sha.lua")' -c 'qall'
lint: lint-lua lint-sh

View file

@ -4,32 +4,32 @@ local commit = {
cmp_luasnip = "16832bb50e760223a403ffa3042859845dd9ef9d",
cmp_nvim_lsp = "134117299ff9e34adde30a735cd8ca9cf8f3db81",
cmp_nvim_lua = "d276254e7198ab7d00f117e88e223b4bd8c02d21",
cmp_path = "e30d3fdee650a07330654efab1951b2f1b91435e",
cmp_path = "d83839ae510d18530c6d36b662a9e806d4dceb73",
comment = "a6e1c127fa7f19ec4e3edbffab1aacb2852b6db3",
dapinstall = "dd09e9dd3a6e29f02ac171515b8a089fb82bb425",
fixcursorhold = "0e4e22d21975da60b0fd2d302285b3b603f9f71e",
friendly_snippets = "e3506d575e120253b4aa47ec2100786fd1e9c38d",
gitsigns = "9678750f209671551c335c4f22658a6554c2f439",
gitsigns = "119ebde2de917399aa89ad3664000a0e1750895a",
lualine = "1ae4f0aa74f0b34222c5ef3281b34602a76b2b00",
luasnip = "7fc3cc24f3c1f1a43e861f589ca48ff3dff0b213",
luasnip = "4191d3e475b65407b8ccf47e4dcbf38552fdbb2d",
nlsp_settings = "199bc1b2859206488423b676da4a7d010b1a3373",
null_ls = "128b8d85506e44f1e7e0f4acd9f2ba02fc7cee05",
nvim_autopairs = "fba2503bd8cd0d8861054523aae39c4ac0680c07",
nvim_cmp = "d17d41bdbd4731759d1b3d368204dc18ce3c84f3",
nvim_dap = "4e8bb7ca12dc8ca6f7a500cbb4ecea185665c7f1",
nvim_lsp_installer = "a4016db22296e4eefbcda2e8b94de74db2d7cb65",
nvim_lspconfig = "5b8624c1bcd332e9fd7ae33a2ca910adb31a7ae7",
nvim_notify = "36012703049bc7be9d4de97cb96c6d17ccf978cd",
null_ls = "73420db2b58408a60a19024be3c14b0eba8413fe",
nvim_autopairs = "18fe311bb967d16ddf2cc28e7e71f234c37d3e26",
nvim_cmp = "d12ba90da372bfe5d9a103546ce1553341a2daff",
nvim_dap = "ce4e56f76598881d020e68037ae91310ea8b9d54",
nvim_lsp_installer = "4df84d7d3e8bcc9b98a1436b6b4155b3a727d41d",
nvim_lspconfig = "382712c4ecba5816f398379dd9d8c8200b025ca3",
nvim_notify = "3f7af5878a890503f9efb7de9f2a0b3f895ad518",
nvim_tree = "e842f088847c98da59e14eb543bde11c45c87ef7",
nvim_treesitter = "8d1547f0bcd0831876678eeb238c3ba9a528189b",
nvim_treesitter = "d6a0a26b8563409d4660def7320a4f4bc23954df",
nvim_ts_context_commentstring = "9f5e422e1030e7073e593ad32c5354aa0bcb0176",
nvim_web_devicons = "8df4988ecf8599fc1f8f387bbf2eae790e4c5ffb",
packer = "db3c3e3379613443d94e677a6ac3f61278e36e47",
packer = "851c62c5ecd3b5adc91665feda8f977e104162a5",
plenary = "1c31adb35fcebe921f65e5c6ff6d5481fa5fa5ac",
popup = "b7404d35d5d3548a82149238289fa71f7f6de4ac",
project = "71d0e23dcfc43cfd6bb2a97dc5a7de1ab47a6538",
structlog = "6f1403a192791ff1fa7ac845a73de9e860f781f1",
telescope = "ef245548a858690fa8f2db1f1a0eaf41b93a6ef6",
telescope = "27294d73e4562cbc83c9c488b4618f012deade7e",
telescope_fzf_native = "b8662b076175e75e6497c59f3e2799b879d7b954",
toggleterm = "265bbff68fbb8b2a5fb011272ec469850254ec9f",
which_key = "d3032b6d3e0adb667975170f626cb693bfc66baa",

View file

@ -205,7 +205,7 @@ function utils.generate_plugins_sha(output)
list[normalize_name] = latest_sha[1]:gsub("\tHEAD", "")
end
end
utils.write_file(output, "local commits = " .. vim.inspect(list), "w")
utils.write_file(output, "local commit = " .. vim.inspect(list), "w")
end
return utils