diff --git a/ctags.md b/ctags.md index 0a17958..9c71b7f 100644 --- a/ctags.md +++ b/ctags.md @@ -12,7 +12,7 @@ return {"neovim/nvim-lspconfig", vim.lsp.config("ctags-lsp", { filetypes = { "c,h,cc,cpp,hh,hpp" }, -- Or whatever language you want to use it for }) - vim.lsp.enable("ctags_lsp") + vim.lsp.enable("ctags-lsp") end, }; ``` @@ -31,7 +31,7 @@ lua << EOF vim.lsp.config("ctags-lsp", { filetypes = { "c,h,cc,cpp,hh,hpp" }, -- Or whatever language you want to use it for }) -vim.lsp.enable("ctags_lsp") +vim.lsp.enable("ctags-lsp") EOF ```