mirror of
https://github.com/cole-maxwell1/dotfiles.git
synced 2026-06-03 11:10:20 -04:00
0c59342399
- Packer is no longer maintained (as of August, 2023)
9 lines
299 B
Lua
9 lines
299 B
Lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
vim.fn.system({"git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable",
|
|
lazypath})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
require("cole")
|