.s/.config/nvim/init.lua

24 lines
479 B
Lua
Raw Normal View History

2024-04-10 12:03:45 -04: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)
require "plugins"
vim.cmd.colorscheme "catppuccin-mocha"