blob: d6fa5dc76cb287f404f0448ecb551e346603ea4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
}
|