added lspInstall to pluginlist

This commit is contained in:
siduck76 2021-06-01 23:58:24 +05:30 committed by GitHub
parent d7c0e1fefb
commit 2d7ccc16f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 7 deletions

View File

@ -4,18 +4,20 @@ local use = packer.use
-- using { } for using different branch , loading plugin with certain commands etc -- using { } for using different branch , loading plugin with certain commands etc
return require("packer").startup( return require("packer").startup(
function() function()
use "kabouzeid/nvim-lspinstall" use "wbthomason/packer.nvim"
-- color related stuff -- color related stuff
use "siduck76/nvim-base16.lua" use "siduck76/nvim-base16.lua"
use "norcalli/nvim-colorizer.lua" use "norcalli/nvim-colorizer.lua"
-- use "ollykel/v-vim" -- v syntax highlighter
-- lsp stuff -- lang stuff
use "nvim-treesitter/nvim-treesitter" use "nvim-treesitter/nvim-treesitter"
use "neovim/nvim-lspconfig" use "neovim/nvim-lspconfig"
use "hrsh7th/nvim-compe" use "hrsh7th/nvim-compe"
use "onsails/lspkind-nvim" use "onsails/lspkind-nvim"
use "sbdchd/neoformat" use "sbdchd/neoformat"
use "nvim-lua/plenary.nvim" use "nvim-lua/plenary.nvim"
use "kabouzeid/nvim-lspinstall"
use "lewis6991/gitsigns.nvim" use "lewis6991/gitsigns.nvim"
use "akinsho/nvim-bufferline.lua" use "akinsho/nvim-bufferline.lua"
@ -41,14 +43,11 @@ return require("packer").startup(
use "karb94/neoscroll.nvim" use "karb94/neoscroll.nvim"
use "kdav5758/TrueZen.nvim" use "kdav5758/TrueZen.nvim"
use "folke/which-key.nvim" use "folke/which-key.nvim"
-- discord rich presence
--use "andweeb/presence.nvim"
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"} use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
end, end,
{ {
display = { display = {
border = { "", "", "", "", "", "", "", "" } border = {"", "", "", "", "", "", "", ""}
} }
} }
) )