diff options
| author | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 17:08:44 -0500 |
|---|---|---|
| committer | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 17:08:44 -0500 |
| commit | 34d51603f03f4554a71d6c8bb550617ba503505c (patch) | |
| tree | 23a674574a4c4f799db33eb73088022bac20a158 /lua/user/plugins.lua | |
| parent | 0054ddc019abd0182001fd3a9a9c50f937b7e5c0 (diff) | |
add completion
Diffstat (limited to 'lua/user/plugins.lua')
| -rw-r--r-- | lua/user/plugins.lua | 13 |
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 |
