diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 13:57:52 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 13:57:52 +0100 |
| commit | 2dbc3b33e5db4f07667aef9e03ffa2626d95f3ba (patch) | |
| tree | a88af1548ec190d4372c4364cb57eb6cd2138f4c /lua/user/plugins.lua | |
| parent | fe68ddcece93b65052894e8d0a5417f8eab4d1cc (diff) | |
| parent | 2e04047bc61be798177a9fffc21d1ed025133ac1 (diff) | |
Merge branch '05-completion' into vgg
Diffstat (limited to 'lua/user/plugins.lua')
| -rw-r--r-- | lua/user/plugins.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index d6176a1..37d3019 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -51,6 +51,17 @@ return packer.startup(function(use) use 'tiagovla/tokyodark.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 if PACKER_BOOTSTRAP then |
