initial commit, working on TODO's

This commit is contained in:
RingOfStorms (Joshua Bell) 2023-05-22 21:37:52 -05:00
commit 5e821a4d61
12 changed files with 411 additions and 0 deletions

26
init.lua Normal file
View file

@ -0,0 +1,26 @@
require "options"
require "keymaps"
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
local output = vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
if vim.api.nvim_get_vvar "shell_error" ~= 0 then
vim.api.nvim_err_writeln("Error cloning lazy.nvim repository...\n\n" .. output)
end
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("user", {})
vim.cmd 'colorscheme material'
require "autocommands"