2021-03-07 14:22:30 +00:00
|
|
|
-- check if packer is installed (~/local/share/nvim/site/pack)
|
|
|
|
local packer_exists = pcall(vim.cmd, [[packadd packer.nvim]])
|
|
|
|
|
2021-04-02 05:48:34 +00:00
|
|
|
-- using { } when using a different branch of the plugin or loading the plugin with certain commands
|
2021-03-13 01:23:02 +00:00
|
|
|
return require("packer").startup(
|
|
|
|
function()
|
|
|
|
use {"wbthomason/packer.nvim", opt = true}
|
2021-03-31 01:51:27 +00:00
|
|
|
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
|
2021-03-31 02:00:33 +00:00
|
|
|
|
2021-04-20 04:15:14 +00:00
|
|
|
-- color related stuff
|
2021-04-02 07:35:54 +00:00
|
|
|
use "norcalli/nvim-base16.lua"
|
2021-04-20 04:15:14 +00:00
|
|
|
use "norcalli/nvim-colorizer.lua"
|
|
|
|
|
|
|
|
-- lsp stuff
|
|
|
|
use "nvim-treesitter/nvim-treesitter"
|
|
|
|
use "neovim/nvim-lspconfig"
|
|
|
|
use "hrsh7th/nvim-compe"
|
|
|
|
use "onsails/lspkind-nvim"
|
|
|
|
use "sbdchd/neoformat"
|
2021-03-31 01:51:27 +00:00
|
|
|
use "nvim-lua/plenary.nvim"
|
2021-04-20 04:15:14 +00:00
|
|
|
|
2021-03-31 01:51:27 +00:00
|
|
|
use "lewis6991/gitsigns.nvim"
|
|
|
|
use "akinsho/nvim-bufferline.lua"
|
2021-04-02 07:53:32 +00:00
|
|
|
use "glepnir/galaxyline.nvim"
|
2021-03-31 01:51:27 +00:00
|
|
|
use "windwp/nvim-autopairs"
|
|
|
|
use "alvan/vim-closetag"
|
2021-04-20 04:15:14 +00:00
|
|
|
|
|
|
|
-- file managing , picker etc
|
|
|
|
use "kyazdani42/nvim-tree.lua"
|
|
|
|
use "kyazdani42/nvim-web-devicons"
|
|
|
|
use "ryanoasis/vim-devicons"
|
2021-03-31 01:51:27 +00:00
|
|
|
use "nvim-telescope/telescope.nvim"
|
|
|
|
use "nvim-telescope/telescope-media-files.nvim"
|
|
|
|
use "nvim-lua/popup.nvim"
|
2021-04-20 04:15:14 +00:00
|
|
|
|
|
|
|
-- misc
|
|
|
|
use "tweekmonster/startuptime.vim"
|
|
|
|
use "907th/vim-auto-save"
|
|
|
|
use "kdav5758/TrueZen.nvim"
|
2021-03-31 02:00:33 +00:00
|
|
|
use "karb94/neoscroll.nvim"
|
2021-03-13 01:23:02 +00:00
|
|
|
end
|
|
|
|
)
|