Files
dotfiles/.config/nvim/init.lua
T
colem 0c59342399 Refactor: switch from packer to lazy.vim
- Packer is no longer maintained (as of August, 2023)
2026-04-22 09:27:59 -05:00

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")