dotfiles/.config/nvim/lua/my/plugins/lsp.lua

16 lines
450 B
Lua
Raw Normal View History

2024-08-19 11:59:14 +02:00
-- TODO: configure
return {
{ 'https://github.com/neovim/nvim-lspconfig',
version = '*',
dependencies = 'cmp-nvim-lsp',
},
{ 'https://github.com/lukas-reineke/lsp-format.nvim',
version = '*',
},
{ 'https://github.com/ray-x/lsp_signature.nvim' },
{ 'https://github.com/p00f/clangd_extensions.nvim' },
{ 'https://github.com/simrat39/rust-tools.nvim',
dependencies = 'nvim-lspconfig',
}
}