Add suport for nvim's LSP

This commit is contained in:
ItsDrike 2021-12-08 23:10:05 +01:00
parent 4eee9b4398
commit 46ca9189af
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843
6 changed files with 180 additions and 11 deletions

View file

@ -62,11 +62,11 @@ local plugin_list = {
config = get_plugin_file("firenvim.lua"),
run = function() vim.fn['firenvim#install'](0) end
},
-- {
-- "neovim/nvim-lspconfig",
-- "williamboman/nvim-lsp-installer",
-- config = get_plugin_file("lspconfig.lua")
-- },
{
"williamboman/nvim-lsp-installer",
config = get_plugin_file("lsp.lua"),
requires = { "neovim/nvim-lspconfig" },
},
--{
-- "nvim-telescope/telescope.nvim",
-- --config = get_plugin_file("telescope.lua")
@ -77,12 +77,12 @@ local plugin_list = {
-- { "nvim-lua/plenary.nvim" },
-- }
--},
{
"neoclide/coc.nvim",
branch = "release",
config = get_plugin_file("coc.vim"),
requires = { "antoinemadec/coc-fzf", opt = true },
},
-- {
-- "neoclide/coc.nvim",
-- branch = "release",
-- config = get_plugin_file("coc.vim"),
-- requires = { "antoinemadec/coc-fzf", opt = true },
-- },
}
return plugin_list