summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-17 23:18:28 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-17 23:18:28 +0100
commitabeb85243c67136f8bb414c38ecfc119ebbd2a18 (patch)
tree41a60deca44b31a75ce2250f97009c69b6ec6c3c
parentcd2b5591f950a7c9986edf2a6b167d89f3702f7e (diff)
Add comments for specific plugin groups
-rw-r--r--lua/plugins.lua16
1 files changed, 12 insertions, 4 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index 25803db..3de5d73 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -1,28 +1,36 @@
-- List of 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" },
+ -- LSP
{ "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
{ "hrsh7th/cmp-nvim-lsp" },
-
- { "L3MON4D3/LuaSnip" },
- { "rafamadriz/friendly-snippets" },
-
{ "neovim/nvim-lspconfig" },
{ "williamboman/nvim-lsp-installer" },
{ "tamago324/nlsp-settings.nvim" },
{ "jose-elias-alvarez/null-ls.nvim" },
+ -- Snippets
+ { "L3MON4D3/LuaSnip" },
+ { "rafamadriz/friendly-snippets" },
+
+ -- Telescope
{ "nvim-telescope/telescope.nvim", requires = { { "nvim-lua/plenary.nvim" } } },
{ "nvim-telescope/telescope-fzf-native.nvim", run = "make" },
+ { "nvim-telescope/telescope-file-browser.nvim" },
+
+ -- Miscellaneous plugins
{
"nvim-treesitter/nvim-treesitter",
run = ":TSUpdate",