summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-10 21:59:01 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-10 21:59:01 +0100
commit405b57a49a09823d4603f65ea034e2a6d9916953 (patch)
treea783cf81e4ffc1481f2045d876e7103029437b0d
parent5140831205c734229845a93517add8b0fc741ce0 (diff)
Add cmp dependecies
-rw-r--r--lua/plugins/plugins.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/lua/plugins/plugins.lua b/lua/plugins/plugins.lua
new file mode 100644
index 0000000..d6fa5dc
--- /dev/null
+++ b/lua/plugins/plugins.lua
@@ -0,0 +1,22 @@
+-- Neovim plugins
+
+return {
+ -- Base
+ { "wbthomason/packer.nvim" } -- Have packer manage itself
+ { "nvim-lua/popup.nvim" } -- An implementation of the Popup API from vim in Neovim
+ { "nvim-lua/plenary.nvim" } -- Useful lua functions used ny lots of plugins
+
+ -- Colorschemes
+ { "aktersnurra/no-clown-fiesta.nvim" } -- My colorscheme
+
+ -- cmp plugins
+ { "hrsh7th/nvim-cmp" } -- The completion plugin
+ { "hrsh7th/cmp-buffer" } -- buffer completions
+ { "hrsh7th/cmp-path" } -- path completions
+ { "hrsh7th/cmp-cmdline" } -- cmdline completions
+ { "saadparwaiz1/cmp_luasnip" } -- snippet completions
+
+ -- Snippets
+ { "L3MON4D3/LuaSnip" } --snippet engine
+ { "rafamadriz/friendly-snippets" } -- a bunch of snippets to use
+}