summaryrefslogtreecommitdiff
path: root/lua/user/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <chrisatmachine@gmail.com>2021-12-14 17:08:44 -0500
committerchristianchiarulli <chrisatmachine@gmail.com>2021-12-14 17:45:04 -0500
commit2683495c3df5ee7d3682897e0d47b0facb3cedc9 (patch)
tree39b880b584b70f6811d2f842e20782d374bcf622 /lua/user/plugins.lua
parent0054ddc019abd0182001fd3a9a9c50f937b7e5c0 (diff)
add completion
add completion
Diffstat (limited to 'lua/user/plugins.lua')
-rw-r--r--lua/user/plugins.lua13
1 files changed, 12 insertions, 1 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua
index 505d14a..4fcc929 100644
--- a/lua/user/plugins.lua
+++ b/lua/user/plugins.lua
@@ -47,7 +47,18 @@ return packer.startup(function(use)
-- Colorschemes
-- use "lunarvim/colorschemes" -- A bunch of colorschemes you can try out
- use "lunarvim/darkplus.nvim" -- A bunch of colorschemes you can try out
+ use "lunarvim/darkplus.nvim"
+
+ -- cmp plugins
+ use "hrsh7th/nvim-cmp" -- The completion plugin
+ use "hrsh7th/cmp-buffer" -- buffer completions
+ use "hrsh7th/cmp-path" -- path completions
+ use "hrsh7th/cmp-cmdline" -- cmdline completions
+ use "saadparwaiz1/cmp_luasnip" -- snippet completions
+
+ -- snippets
+ use "L3MON4D3/LuaSnip" --snippet engine
+ use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins