From 6b06898e35d9557ca83e1d4ff4aa048296ca5120 Mon Sep 17 00:00:00 2001 From: louie Date: Fri, 24 Jun 2022 20:32:43 -0700 Subject: Added lsp --- lua/user/plugins.lua | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lua/user/plugins.lua') 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) -- cgit