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

97 lines
2.5 KiB
Lua

local packer = require("packer")
local use = packer.use
-- using { } for using different branch , loading plugin with certain commands etc
return packer.startup(
3 years ago
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",
event = "BufRead",
config = function()
require("treesitter-nvim").config()
end
}
use "neovim/nvim-lspconfig"
-- load compe in insert mode only
use {
"hrsh7th/nvim-compe",
event = "InsertEnter",
config = function()
require("compe-completion").config()
end
}
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"
use {
"windwp/nvim-autopairs",
event = "InsertEnter",
config = function()
require("nvim-autopairs").setup()
end
}
-- use "alvan/vim-closetag" -- for html
use "terrortylor/nvim-comment" -- snippet support
-- snippet
use {
"hrsh7th/vim-vsnip",
event = "InsertCharPre"
}
use "rafamadriz/friendly-snippets"
-- file managing , picker etc
use {
"kyazdani42/nvim-tree.lua",
cmd = "NvimTreeToggle",
config = function()
require("nvimTree").config()
end
}
use "kyazdani42/nvim-web-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"
-- load autosave plugin only if its globally enabled
use {
"907th/vim-auto-save",
cond = function()
return vim.g.auto_save == 1
end
}
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
)