Fixing typos

This commit is contained in:
rto 2026-04-01 21:21:02 +02:00
parent 323d60bf9f
commit a8795bad08

View File

@ -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
```