55 lines
1.7 KiB
Lua
55 lines
1.7 KiB
Lua
local packer = require("packer")
|
|
local use = packer.use
|
|
|
|
-- using { } for using different branch , loading plugin with certain commands etc
|
|
return require("packer").startup(
|
|
function()
|
|
use "kabouzeid/nvim-lspinstall"
|
|
-- color related stuff
|
|
use "siduck76/nvim-base16.lua"
|
|
use "norcalli/nvim-colorizer.lua"
|
|
-- use "ollykel/v-vim" -- v syntax highlighter
|
|
-- lsp stuff
|
|
use "nvim-treesitter/nvim-treesitter"
|
|
use "neovim/nvim-lspconfig"
|
|
use "hrsh7th/nvim-compe"
|
|
use "onsails/lspkind-nvim"
|
|
use "sbdchd/neoformat"
|
|
use "nvim-lua/plenary.nvim"
|
|
|
|
use "lewis6991/gitsigns.nvim"
|
|
use "akinsho/nvim-bufferline.lua"
|
|
use "glepnir/galaxyline.nvim"
|
|
use "windwp/nvim-autopairs"
|
|
use "alvan/vim-closetag"
|
|
|
|
-- snippet support
|
|
use "hrsh7th/vim-vsnip"
|
|
use "rafamadriz/friendly-snippets"
|
|
|
|
-- file managing , picker etc
|
|
use "kyazdani42/nvim-tree.lua"
|
|
use "kyazdani42/nvim-web-devicons"
|
|
use "ryanoasis/vim-devicons"
|
|
use "nvim-telescope/telescope.nvim"
|
|
use "nvim-telescope/telescope-media-files.nvim"
|
|
use "nvim-lua/popup.nvim"
|
|
|
|
-- misc
|
|
use "tweekmonster/startuptime.vim"
|
|
use "907th/vim-auto-save"
|
|
use "karb94/neoscroll.nvim"
|
|
use "kdav5758/TrueZen.nvim"
|
|
use "folke/which-key.nvim"
|
|
|
|
-- discord rich presence
|
|
--use "andweeb/presence.nvim"
|
|
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
|
|
end,
|
|
{
|
|
display = {
|
|
border = { "┌", "─", "┐", "│", "┘", "─", "└", "│" }
|
|
}
|
|
}
|
|
)
|