Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

netmute/ctags-lsp.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deprecated!

The configuration provided by this repository was deprecated in Neovim 0.11+.

You can now simply configure ctags-lsp like this:

-- lazy.nvim
{
	"neovim/nvim-lspconfig",
	ft = { "ruby", "python" },
	config = function()
		vim.lsp.config("ctags_lsp", {
			cmd = { "ctags-lsp" },
			filetypes = { "ruby", "python" },
			root_dir = vim.uv.cwd(),
		})
		vim.lsp.enable("ctags_lsp")
	end,
},

About

Neovim configuration for ctags-lsp

Resources

License

Stars

Watchers

Forks

Languages