Can I use navigator features without setting up lsp from navigator ? #194
iabdelkareem
started this conversation in
General
Replies: 1 comment
-
I am not sure if these works
You need to add local function on_attach(client, bufnr)
require("navigator.lspclient.mapping").setup({
client = client,
bufnr = bufnr,
cap = client.server_capabilities,
})
...
-- or do this:
vim.cmd('nmap <you_key> lua require('navigator.xxx').func())
end |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First of all thank you for your contributions 🙏 I'm a big fan of lsp signature and I see navigator really promising.
Is there a way today to use navigator features while setting up the LSP myself?
I want to take control of configuring the other plugins (e.g., lsp install, lsp config and lsp signature) outside of navigator yet hook the navigator features to it.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions