diff options
author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2023-02-17 18:05:08 +0200 |
---|---|---|
committer | opalmay <[email protected]> | 2023-02-24 17:18:10 +0200 |
commit | ccc51564411083fcea62a3e75cc3a6d99c634cfc (patch) | |
tree | 0522643456626b1a30b5e1c69b7f6da5b003aa6e /lua/lvim/lsp/providers | |
parent | 415521b34d8fe03fef4655946b404a0bf29cc9ed (diff) |
refactor(lsp)!: lua lsp renamed (#3836)
Need to run `:LvimCacheReset` after this for lua ftplugin regenration
* chore: bump plugins version
* refactor(loader): update lazy's cache setup
* chore: bump plugins version
* chore(lsp): skip antlerls for html
* fix(lsp): lua lsp renamed (#3841)
* fix(loader): lazy's cache is now a directory
* fix: LvimUpdate should bump core plugins (#3846)
* chore: bump plugins version
* fix(cmp): handle deprecated tree-sitter api (#3853)
* fix(loader): wrap cache invocation with pcall
avoid problems when lazy hasn't been updated yet
* chore(lsp): skip docker-compose ls
* chore: bump plugins
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: kylo252 <[email protected]>
Co-authored-by: Jieru Mei <[email protected]>
Co-authored-by: LostNeophyte <[email protected]>
Diffstat (limited to 'lua/lvim/lsp/providers')
-rw-r--r-- | lua/lvim/lsp/providers/lua_ls.lua (renamed from lua/lvim/lsp/providers/sumneko_lua.lua) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/lsp/providers/sumneko_lua.lua b/lua/lvim/lsp/providers/lua_ls.lua index a73d3edc..2d3f4932 100644 --- a/lua/lvim/lsp/providers/sumneko_lua.lua +++ b/lua/lvim/lsp/providers/lua_ls.lua @@ -30,7 +30,7 @@ local make_on_new_config = function(on_new_config, _) return lspconfig.util.add_hook_before(on_new_config, function(new_config, _) local server_name = new_config.name - if server_name ~= "sumneko_lua" then + if server_name ~= "lua_ls" then return end local plugins = { "plenary.nvim", "telescope.nvim", "nvim-treesitter", "LuaSnip" } |