summaryrefslogtreecommitdiff
path: root/lua/user/plugins.lua
diff options
context:
space:
mode:
authorlouie <louie@example.com>2022-06-24 20:32:43 -0700
committerlouie <louie@example.com>2022-06-24 20:32:43 -0700
commit6b06898e35d9557ca83e1d4ff4aa048296ca5120 (patch)
tree536a659c852e5d6c3efec9fde5e3b0e403d955fd /lua/user/plugins.lua
parentdb332bc52f229f2f66a71107bfbd38f72d81a3cd (diff)
Added lsp
Diffstat (limited to 'lua/user/plugins.lua')
-rw-r--r--lua/user/plugins.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua
index a294dc1..3584af0 100644
--- a/lua/user/plugins.lua
+++ b/lua/user/plugins.lua
@@ -20,9 +20,15 @@ return packer.startup(function(use)
use "hrsh7th/cmp-path" -- Path completions
use "hrsh7th/cmp-cmdline" -- Cmdline completions
use "saadparwaiz1/cmp_luasnip" -- snippet completions
+ use "hrsh7th/cmp-nvim-lsp" -- lsp completion
+ use "hrsh7th/cmp-nvim-lua" -- config completion
-- snippets
use "L3MON4D3/LuaSnip" --snippet engine
--use "rafamadriz/friendly-snippets" --a bunch of snippets to use
+
+ -- LSP
+ use "neovim/nvim-lspconfig" -- enable LSP
+ use "williamboman/nvim-lsp-installer" -- simple to use language server installer
end)