mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 03:12:56 +00:00
34 lines
969 B
Lua
34 lines
969 B
Lua
|
-- Bootstrap the Packer plugin manager
|
||
|
local fn = vim.fn
|
||
|
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
|
||
|
if fn.empty(fn.glob(install_path)) > 0 then
|
||
|
packer_bootstrap = fn.system({
|
||
|
"git",
|
||
|
"clone",
|
||
|
"--depth",
|
||
|
"1",
|
||
|
"https://github.com/wbthomason/packer.nvim",
|
||
|
install_path,
|
||
|
})
|
||
|
end
|
||
|
|
||
|
require("packer").startup(function(use)
|
||
|
-- Maintain plugin manager
|
||
|
use("wbthomason/packer.nvim")
|
||
|
|
||
|
-- Include other files initialized by packer
|
||
|
require("packer.speed").packer(use)
|
||
|
require("packer.misc").packer(use)
|
||
|
require("packer.colors").packer(use)
|
||
|
require("packer.visuals").packer(use)
|
||
|
require("packer.lsp").packer(use)
|
||
|
require("packer.completion").packer(use)
|
||
|
require("packer.syntax").packer(use)
|
||
|
require("packer.telescope").packer(use)
|
||
|
|
||
|
-- Auto-install after bootstrapping
|
||
|
if packer_bootstrap then
|
||
|
require("packer").sync()
|
||
|
end
|
||
|
end)
|