old configuration

This commit is contained in:
CJSatnarine
2025-12-14 20:45:53 -05:00
commit c8b2f86499
25 changed files with 958 additions and 0 deletions

21
init.lua Normal file
View File

@@ -0,0 +1,21 @@
-- 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")