nvim: migrate to 0.10

This commit is contained in:
He4eT 2024-06-22 23:25:33 +02:00
commit a195719254
2 changed files with 3 additions and 2 deletions

View file

@ -247,6 +247,7 @@ require('lazy').setup({
}, },
--[[ cfg_lazy_desolate: Not-so-colorful colorscheme ]] --[[ cfg_lazy_desolate: Not-so-colorful colorscheme ]]
{ {
-- dir = '~/trash/desolate.nvim',
'He4eT/desolate.nvim', 'He4eT/desolate.nvim',
priority = 1000, priority = 1000,
init = function() init = function()
@ -424,7 +425,7 @@ require('lazy').setup({
-- 'Go to definition' workaround -- 'Go to definition' workaround
-- https://github.com/holoiii/nvim/commit/73a4db74fe463f5064346ba63870557fedd134ad -- https://github.com/holoiii/nvim/commit/73a4db74fe463f5064346ba63870557fedd134ad
['textDocument/definition'] = function(err, result, ...) ['textDocument/definition'] = function(err, result, ...)
result = vim.tbl_islist(result) and result[1] or result result = vim.islist(result) and result[1] or result
vim.lsp.handlers['textDocument/definition'](err, result, ...) vim.lsp.handlers['textDocument/definition'](err, result, ...)
end, end,
}, },

View file

@ -4,7 +4,7 @@
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" }, "cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
"desolate.nvim": { "branch": "develop", "commit": "b87fff48ccb2c443b90c83b0115d60a7aaa56904" }, "desolate.nvim": { "branch": "develop", "commit": "460602427d4a7a35364790e520cf032e5d78cb60" },
"fzf": { "branch": "master", "commit": "7c2ffd3fef3f9131ee448a5f40d91835c8bd814d" }, "fzf": { "branch": "master", "commit": "7c2ffd3fef3f9131ee448a5f40d91835c8bd814d" },
"fzf-lua": { "branch": "main", "commit": "1ec6eeda11c3a3dcd544e1c61ad4b8c9b49903c4" }, "fzf-lua": { "branch": "main", "commit": "1ec6eeda11c3a3dcd544e1c61ad4b8c9b49903c4" },
"gitsigns.nvim": { "branch": "main", "commit": "8df63f2ddc615feb71fd4aee45a4cee022876df1" }, "gitsigns.nvim": { "branch": "main", "commit": "8df63f2ddc615feb71fd4aee45a4cee022876df1" },