84 lines
2.2 KiB
Lua
84 lines
2.2 KiB
Lua
local packer = require("packer")
|
|
local use = packer.use
|
|
|
|
-- using { } for using different branch , loading plugin with certain commands etc
|
|
return 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",
|
|
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"
|
|
use "nvim-lua/plenary.nvim"
|
|
use "kabouzeid/nvim-lspinstall"
|
|
|
|
use "lewis6991/gitsigns.nvim"
|
|
use "akinsho/nvim-bufferline.lua"
|
|
use "glepnir/galaxyline.nvim"
|
|
use "windwp/nvim-autopairs"
|
|
-- use "alvan/vim-closetag" -- for html
|
|
|
|
-- Comment
|
|
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"
|
|
use "kyazdani42/nvim-web-devicons"
|
|
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
|
|
}
|
|
|
|
use "karb94/neoscroll.nvim"
|
|
use "kdav5758/TrueZen.nvim"
|
|
use "folke/which-key.nvim"
|
|
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
|
|
end,
|
|
{
|
|
display = {
|
|
border = {"┌", "─", "┐", "│", "┘", "─", "└", "│"}
|
|
}
|
|
}
|
|
)
|