From 2d7ccc16f22bf345d7e26719e76b13d6feaa746c Mon Sep 17 00:00:00 2001 From: siduck76 Date: Tue, 1 Jun 2021 23:58:24 +0530 Subject: [PATCH] added lspInstall to pluginlist --- lua/pluginList.lua | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/lua/pluginList.lua b/lua/pluginList.lua index d1bd8bd..2d7368f 100644 --- a/lua/pluginList.lua +++ b/lua/pluginList.lua @@ -4,18 +4,20 @@ local use = packer.use -- using { } for using different branch , loading plugin with certain commands etc return require("packer").startup( function() - use "kabouzeid/nvim-lspinstall" + use "wbthomason/packer.nvim" + -- color related stuff use "siduck76/nvim-base16.lua" use "norcalli/nvim-colorizer.lua" - -- use "ollykel/v-vim" -- v syntax highlighter - -- lsp stuff + + -- lang stuff use "nvim-treesitter/nvim-treesitter" use "neovim/nvim-lspconfig" use "hrsh7th/nvim-compe" use "onsails/lspkind-nvim" use "sbdchd/neoformat" use "nvim-lua/plenary.nvim" + use "kabouzeid/nvim-lspinstall" use "lewis6991/gitsigns.nvim" use "akinsho/nvim-bufferline.lua" @@ -41,14 +43,11 @@ return require("packer").startup( use "karb94/neoscroll.nvim" use "kdav5758/TrueZen.nvim" use "folke/which-key.nvim" - - -- discord rich presence - --use "andweeb/presence.nvim" use {"lukas-reineke/indent-blankline.nvim", branch = "lua"} end, { display = { - border = { "┌", "─", "┐", "│", "┘", "─", "└", "│" } + border = {"┌", "─", "┐", "│", "┘", "─", "└", "│"} } } )