nvchad/lua/pluginList.lua

97 lines
2.5 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-06-14 10:25:41 -04:00
return packer.startup(
2021-03-12 20:23:02 -05:00
function()
2021-06-01 14:28:24 -04:00
use "wbthomason/packer.nvim"
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-06-01 14:28:24 -04:00
-- lang stuff
2021-06-25 12:06:13 -04:00
use {
"nvim-treesitter/nvim-treesitter",
event = "BufRead",
config = function()
require("treesitter-nvim").config()
end
}
2021-04-20 00:15:14 -04:00
use "neovim/nvim-lspconfig"
2021-06-24 13:19:42 -04:00
2021-06-24 13:21:39 -04:00
-- load compe in insert mode only
2021-06-24 13:19:42 -04:00
use {
"hrsh7th/nvim-compe",
event = "InsertEnter",
config = function()
require("compe-completion").config()
end
}
2021-04-20 00:15:14 -04:00
use "onsails/lspkind-nvim"
use "sbdchd/neoformat"
2021-03-30 21:51:27 -04:00
use "nvim-lua/plenary.nvim"
2021-06-01 14:28:24 -04:00
use "kabouzeid/nvim-lspinstall"
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-06-25 13:36:17 -04:00
use {
"windwp/nvim-autopairs",
event = "InsertEnter",
config = function()
require("nvim-autopairs").setup()
end
}
2021-06-24 13:19:42 -04:00
-- use "alvan/vim-closetag" -- for html
2021-05-12 13:23:35 -04:00
2021-06-25 12:06:13 -04:00
use "terrortylor/nvim-comment" -- snippet support
2021-06-15 06:25:32 -04:00
2021-06-25 12:06:13 -04:00
-- snippet
2021-06-24 13:21:39 -04:00
use {
"hrsh7th/vim-vsnip",
event = "InsertCharPre"
}
use "rafamadriz/friendly-snippets"
2021-04-20 00:15:14 -04:00
-- file managing , picker etc
2021-06-25 13:36:17 -04:00
use {
"kyazdani42/nvim-tree.lua",
cmd = "NvimTreeToggle",
config = function()
require("nvimTree").config()
end
}
2021-04-20 00:15:14 -04:00
use "kyazdani42/nvim-web-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 "glepnir/dashboard-nvim"
2021-04-20 00:15:14 -04:00
use "tweekmonster/startuptime.vim"
2021-06-24 13:21:39 -04:00
-- load autosave plugin only if its globally enabled
use {
"907th/vim-auto-save",
cond = function()
return vim.g.auto_save == 1
end
}
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-12 13:23:35 -04:00
use "folke/which-key.nvim"
2021-04-30 03:28:47 -04:00
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
end,
{
display = {
2021-06-01 14:28:24 -04:00
border = {"", "", "", "", "", "", "", ""}
}
}
2021-03-12 20:23:02 -05:00
)