From a8795bad0826e35e9960b2a073b80b7548c592d1 Mon Sep 17 00:00:00 2001 From: rto Date: Wed, 1 Apr 2026 21:21:02 +0200 Subject: [PATCH] Fixing typos --- ctags.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ```