Files
my-nvim-setup/init.lua

26 lines
539 B
Lua
Raw Normal View History

2026-02-23 23:13:41 -07:00
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)
local plugins = require "plugins"
require("lazy").setup(plugins, require "lazy_config")
vim.cmd "colorscheme vague"