From 499e646a811560211090b3f5a4e943cd3782d8b1 Mon Sep 17 00:00:00 2001 From: louie Date: Wed, 22 Jun 2022 22:54:07 -0700 Subject: Added cmp file --- lua/user/plugins.lua | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'lua/user/plugins.lua') diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index d90587e..e40dff3 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -7,10 +7,22 @@ end -- Install your plugins here return packer.startup(function(use) -- My plugins here - use "wbthomason/packer.nvim" -- Have packer manage itself - --use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim - --use "nvim-lua/plenary.nvim" -- Useful lua functions used by lots of plugins + use "wbthomason/packer.nvim" -- Have packer manage itself + --use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim + --use "nvim-lua/plenary.nvim" -- Useful lua functions used by lots of plugins -- Colorschemes - --use "lunarvim/colorschemes" -- Additional colorschemes + --use "lunarvim/colorschemes" -- Additional colorschemes + + -- 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 + end) -- cgit