nvchad/lua/pluginList.lua

57 lines
1.6 KiB
Lua
Raw Normal View History

2021-04-26 04:14:51 -04:00
local packer = require("packer")
local use = packer.use
2021-04-30 03:28:47 -04:00
-- using { } for using different branch , loading plugin with certain commands etc
2021-03-12 20:23:02 -05:00
return require("packer").startup(
function()
2021-04-30 03:28:47 -04:00
use "wbthomason/packer.nvim"
2021-03-30 22:00:33 -04:00
2021-04-20 00:15:14 -04:00
-- color related stuff
2021-05-06 00:05:23 -04:00
use "siduck76/nvim-base16.lua"
2021-04-20 00:15:14 -04:00
use "norcalli/nvim-colorizer.lua"
2021-05-06 13:14:25 -04:00
-- use "ollykel/v-vim" -- v syntax highlighter
2021-04-20 00:15:14 -04:00
-- lsp stuff
use "nvim-treesitter/nvim-treesitter"
use "neovim/nvim-lspconfig"
use "hrsh7th/nvim-compe"
use "onsails/lspkind-nvim"
use "sbdchd/neoformat"
2021-03-30 21:51:27 -04:00
use "nvim-lua/plenary.nvim"
2021-04-20 00:15:14 -04:00
2021-03-30 21:51:27 -04:00
use "lewis6991/gitsigns.nvim"
use "akinsho/nvim-bufferline.lua"
2021-04-02 03:53:32 -04:00
use "glepnir/galaxyline.nvim"
2021-03-30 21:51:27 -04:00
use "windwp/nvim-autopairs"
use "alvan/vim-closetag"
-- snippet support
use "hrsh7th/vim-vsnip"
use "rafamadriz/friendly-snippets"
2021-04-20 00:15:14 -04:00
-- file managing , picker etc
use "kyazdani42/nvim-tree.lua"
use "kyazdani42/nvim-web-devicons"
use "ryanoasis/vim-devicons"
2021-03-30 21:51:27 -04:00
use "nvim-telescope/telescope.nvim"
use "nvim-telescope/telescope-media-files.nvim"
use "nvim-lua/popup.nvim"
2021-04-20 00:15:14 -04:00
-- misc
use "tweekmonster/startuptime.vim"
use "907th/vim-auto-save"
2021-03-30 22:00:33 -04:00
use "karb94/neoscroll.nvim"
2021-04-27 12:43:44 -04:00
use "kdav5758/TrueZen.nvim"
2021-05-06 13:01:24 -04:00
-- discord rich presence
--use "andweeb/presence.nvim"
2021-04-30 03:28:47 -04:00
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
end,
{
display = {
border = { "", "", "", "", "", "", "", "" }
}
}
2021-03-12 20:23:02 -05:00
)