.s/.config/nvim/init.lua
2024-08-26 19:34:49 -07:00

23 lines
455 B
Lua

require "options"
require "mappings"
require "commands"
-- bootstrap plugins & lazy.nvim
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" -- path where its going to be installed
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 "plugins"
require "theme"