From 4b92916fd367448fc8b7e23b4e2471593855e6a8 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Fri, 10 Dec 2021 00:55:40 +0100 Subject: [PATCH] Add more comments - Moooooreeee! --- home/.config/nvim/lua/plugins/plugin_list.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/.config/nvim/lua/plugins/plugin_list.lua b/home/.config/nvim/lua/plugins/plugin_list.lua index c270d5b..de4a4ce 100644 --- a/home/.config/nvim/lua/plugins/plugin_list.lua +++ b/home/.config/nvim/lua/plugins/plugin_list.lua @@ -51,6 +51,7 @@ local plugin_list = { { "ryanoasis/vim-devicons" }, }, }, + -- TODO: Consider changing this to nvim-tree { "preservim/nerdtree", -- File tree config = get_plugin_file("nerdtree.lua"), @@ -80,10 +81,12 @@ local plugin_list = { run = function() vim.fn['firenvim#install'](0) end }, { - "williamboman/nvim-lsp-installer", -- LSP protocol configurations, autocomplete, autoinstaller + "williamboman/nvim-lsp-installer", -- LSP auto-installer config = get_plugin_file("lsp.lua"), requires = { + -- Predefined LSP server configurations "neovim/nvim-lspconfig", + -- Support for autocompletion "hrsh7th/nvim-cmp", "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer",