]> git.rmz.io Git - dotfiles.git/blobdiff - nvim/lua/plugins/lsp/keymaps.lua
lazyvim: extract opts function into util/lazy
[dotfiles.git] / nvim / lua / plugins / lsp / keymaps.lua
index 7cb2b49831aeeb16901d4bf3c447f4722c1b822a..42e210b53d6bf121855d2659526b5116dfa7e178 100644 (file)
@@ -68,7 +68,7 @@ function M.resolve(buffer)
     return {}
   end
   local spec = vim.tbl_extend("force", {}, M.get())
-  local opts = LazyVim.opts("nvim-lspconfig")
+  local opts = rmz.lazy.opts("nvim-lspconfig")
   local clients = rmz.lsp.get_clients({ bufnr = buffer })
   for _, client in ipairs(clients) do
     local maps = opts.servers[client.name] and opts.servers[client.name].keys or {}