diff options
| author | Abouzar Parvan <[email protected]> | 2022-01-30 20:51:45 +0100 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-30 23:21:45 +0330 | 
| commit | 31a48325cfa98f75a4b88b1de4e80b7e38cb0e99 (patch) | |
| tree | b2007d1c3625b616ba7de1b4a77f0dd922978d8b /lua | |
| parent | 36f232279be1e8d4b1933fd88ce5121a74a9f054 (diff) | |
chore(plugins): update plugin version (#2225)
* chore(plugins): update plugin version
* fix(lvim-info): make the git branch cmd compatible with mac
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lvim/plugins.lua | 18 | ||||
| -rw-r--r-- | lua/lvim/utils/git.lua | 2 | 
2 files changed, 10 insertions, 10 deletions
| diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index b5c57f24..c4c2c61f 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -4,25 +4,25 @@ local commit = {    cmp_luasnip = "d6f837f4e8fe48eeae288e638691b91b97d1737f",    cmp_nvim_lsp = "ebdfc204afb87f15ce3d3d3f5df0b8181443b5ba",    cmp_path = "c5230cb439df9547294678d0f1c1465ad7989e5f", -  comment = "7365bfe9fc6dc004cc97b8977aa8129999d81bf5", +  comment = "22e71071d9473996563464fde19b108e5504f892",    dapinstall = "24923c3819a450a772bb8f675926d530e829665f",    dashboard_nvim = "d82ddae95fd4dc4c3b7bbe87f09b1840fbf20ecb",    fixcursorhold = "0e4e22d21975da60b0fd2d302285b3b603f9f71e",    friendly_snippets = "4f6bd8eb5fbe0e45d57e732783ead2c3a01f549c", -  gitsigns = "4a2d30f5fb77750c7a42be9bb58a9cc2c6c7f31d", +  gitsigns = "2fa3716bc4690da96d885becdf9988603f0756f0",    lua_dev = "a0ee77789d9948adce64d98700cc90cecaef88d5",    lualine = "9208bae98fd5d1ab6145868a8c48bfee53c1a499", -  luasnip = "59576a5cf28556a393eedfe38467e998288fc905", -  nlsp_settings = "3a3942b5d1da30e3ca0dc431aada3191c5952054", -  null_ls = "59067dae4bf2367eb06326e419c23353722ecbec", +  luasnip = "35322c97b041542f95c85e87a8215892ea4137d5", +  nlsp_settings = "b4f48afb308e622adc8ea0f3aaff4c1e1344515a", +  null_ls = "2ae4a5e2e2b35716c44c104ef1afa35ecb40c444",    nvim_autopairs = "97e454ce9b1371373105716d196c1017394bc947",    nvim_cmp = "d93104244c3834fbd8f3dd01da9729920e0b5fe7",    nvim_dap = "c9a58267524f560112ecb6faa36ab2b5bc2f78a3", -  nvim_lsp_installer = "88e44bbbe2e03523e08f2bd3c9a954675bc438f4", -  nvim_lspconfig = "c51096481dc13193991571b7132740d762902355", +  nvim_lsp_installer = "c2bde3911892a51323219f7cfc9bb50b49afd29f", +  nvim_lspconfig = "e7df7ecae0b0d2f997ea65e951ddbe98ca3e154b",    nvim_notify = "15f52efacd169ea26b0f4070451d3ea53f98cd5a",    nvim_tree = "2dfed89af7724f9e71d2fdbe3cde791a93e9b9e0", -  nvim_treesitter = "620cc936ad6b26c59bb2d888b3890bb8d06c50c7", +  nvim_treesitter = "cc89dda2410f5aa9160f45a6acd4db0ee26fe632",    nvim_ts_context_commentstring = "097df33c9ef5bbd3828105e4bee99965b758dc3f",    nvim_web_devicons = "634e26818f2bea9161b7efa76735746838971824",    packer = "7182f0ddbca2dd6f6723633a84d47f4d26518191", @@ -30,7 +30,7 @@ local commit = {    popup = "b7404d35d5d3548a82149238289fa71f7f6de4ac",    project = "cef52b8da07648b750d7f1e8fb93f12cb9482988",    structlog = "6f1403a192791ff1fa7ac845a73de9e860f781f1", -  telescope = "0011b1148d3975600f5a9f0be8058cdaac4e30d9", +  telescope = "3a3c9a3c8ba3fb14121ef5c50a87173dcb969416",    telescope_fzf_native = "b8662b076175e75e6497c59f3e2799b879d7b954",    toggleterm = "d2ceb2ca3268d09db3033b133c0ee4642e07f059",    which_key = "28d2bd129575b5e9ebddd88506601290bb2bb221", diff --git a/lua/lvim/utils/git.lua b/lua/lvim/utils/git.lua index c0a67bf0..8f25a2bb 100644 --- a/lua/lvim/utils/git.lua +++ b/lua/lvim/utils/git.lua @@ -89,7 +89,7 @@ end  ---Get the current Lunarvim development branch  ---@return string|nil  function M.get_lvim_branch() -  local ret, branch = git_cmd { args = { "branch", "--show-current" } } +  local ret, branch = git_cmd { args = { "rev-parse", "--abbrev-ref", "HEAD" } }    if ret ~= 0 or (not branch or branch[1] == "") then      Log:error "Unable to retrieve the name of the current branch. Check the log for further information"      return | 
