diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 14:51:10 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 14:51:10 +0100 |
| commit | 00f61b3600ef40c0a94a3897a5da6d7d3de8b39a (patch) | |
| tree | 4e134da1376d8506fbc0c4b2177535cd8c2b3f5a /lua/user/plugins.lua | |
| parent | 87b3c29b07ff5390188af5815e0290c854549829 (diff) | |
| parent | e60e3e816a1f9fe8338733734286c3c56e58f944 (diff) | |
Merge branch '06-LSP' into vgg
Diffstat (limited to 'lua/user/plugins.lua')
| -rw-r--r-- | lua/user/plugins.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 37d3019..72695d0 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -57,11 +57,17 @@ 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" + use "hrsh7th/cmp-nvim-lua" -- 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 + -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins if PACKER_BOOTSTRAP then |
