diff options
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 |
