Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 684 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 684 Bytes

ctags-lsp.nvim

Neovim configuration for ctags-lsp

Screenshot

Installation

Get the language server:

brew install netmute/tap/ctags-lsp

Setup in neovim:

-- lazy.nvim
{
    "neovim/nvim-lspconfig",
    dependencies = "netmute/ctags-lsp.nvim",
    config = function()
        require("lspconfig").ctags_lsp.setup({})
    end,
}

It attaches to all filetypes by default.
Need it for specific filetypes only? It’s configurable:

lspconfig.ctags_lsp.setup({
    filetypes = { "ruby", "go" },
})