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

140 lines
3.6 KiB
Lua

local packer = require("packer")
local use = packer.use
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",
event = "BufRead",
config = function()
require("lspkind").init()
end
}
use {
"sbdchd/neoformat",
cmd = "Neoformat"
}
3 years ago
use "nvim-lua/plenary.nvim"
use "kabouzeid/nvim-lspinstall"
use {
"lewis6991/gitsigns.nvim",
event = "BufRead",
config = function()
require("gitsigns-nvim").config()
end
}
3 years ago
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",
cmd = {
"Telescope live_grep",
"DashboardNewFile",
"DashboardJumpMarks"
},
setup = function()
require("dashboard").config()
end
}
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",
event = "BufRead",
setup = function()
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = {"help", "terminal", "dashboard"}
vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false
end
}
end,
{
display = {
border = {"", "", "", "", "", "", "", ""}
}
}
3 years ago
)