You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
NvChad/lua/pluginList.lua

55 lines
1.6 KiB
Lua

local packer = require("packer")
local use = packer.use
-- using { } for using different branch , loading plugin with certain commands etc
3 years ago
return require("packer").startup(
function()
use "wbthomason/packer.nvim"
-- color related stuff
use "siduck76/nvim-base16.lua"
use "norcalli/nvim-colorizer.lua"
-- lang stuff
use "nvim-treesitter/nvim-treesitter"
use "neovim/nvim-lspconfig"
use "hrsh7th/nvim-compe"
use "onsails/lspkind-nvim"
use "sbdchd/neoformat"
3 years ago
use "nvim-lua/plenary.nvim"
use "kabouzeid/nvim-lspinstall"
3 years ago
use "lewis6991/gitsigns.nvim"
use "akinsho/nvim-bufferline.lua"
3 years ago
use "glepnir/galaxyline.nvim"
3 years ago
use "windwp/nvim-autopairs"
use "alvan/vim-closetag"
-- snippet support
use "hrsh7th/vim-vsnip"
use "rafamadriz/friendly-snippets"
-- file managing , picker etc
use "kyazdani42/nvim-tree.lua"
use "kyazdani42/nvim-web-devicons"
use "ryanoasis/vim-devicons"
3 years ago
use "nvim-telescope/telescope.nvim"
use "nvim-telescope/telescope-media-files.nvim"
use "nvim-lua/popup.nvim"
-- misc
use "glepnir/dashboard-nvim"
use "tweekmonster/startuptime.vim"
use "907th/vim-auto-save"
3 years ago
use "karb94/neoscroll.nvim"
use "kdav5758/TrueZen.nvim"
use "folke/which-key.nvim"
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
end,
{
display = {
border = {"", "", "", "", "", "", "", ""}
}
}
3 years ago
)