Files
nvim/init.lua
2025-12-14 20:45:53 -05:00

22 lines
579 B
Lua

-- NeoVim initalisation. Mostly stuff with lazy.
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
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", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
vim.opt.termguicolors = true
vim.cmd("colorscheme gay7")
-- Require stuff for reading files I guess. Correct this later.
require("vim-options")
require("lazy").setup("plugins")