blob: e577d4a7e54f0d798c6dcff6d06c1a974c802dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
-- bootstrap lazy.nvim
-- stylua: ignore
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
require('autocmds')
require('keymaps')
require('options')
require('plugins')
|