You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#3254 renamed lsp.servers.*.config to lsp.servers.*.settings, but as me and @MattSturgeon discussed in #3261 it is slightly awkward (and maybe somewhat confusing) because settings is a argument of neovim's LSP config API (:h vim.lsp.ClientConfig), which means that we end up with configs that may look like this
lsp.servers.clangd={enable=true;settings.settings={# some settings};};
We could revert and use config again. This brings the API more in line with what the it looks on the neovim side, but #3254 was of course merged for good reasons.