-
Hey guys, when calling installer.setup {
ui = {
icons = {
server_installed = "✓",
server_pending = "➜",
server_uninstalled = "✗"
}
}
}
If I Since I just started getting into nvim I am not entirely sure if this is a bug or if it's a brainfart on my end. The full repository can be found here: Thank you in advance and excuse me, if this is something super obvious! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Figured it out! I needed to use use {
"williamboman/nvim-lsp-installer",
"neovim/nvim-lspconfig",
} instead of use({
"neovim/nvim-lspconfig",
event = "BufReadPre",
requires = {
{ "williamboman/nvim-lsp-installer" }
},
}) in my packer config. The second case installed the package in |
Beta Was this translation helpful? Give feedback.
Figured it out! I needed to use
instead of
in my packer config. The second case installed the package in
/opt
instead of/start
.This leads to
local util = require "lspconfig.util"
inmiddleware
not being resolved correctly.