update neovim config to use lazy, fix some issues with screens in general

This commit is contained in:
2025-09-13 04:48:53 -07:00
parent cfcea95348
commit c77e3abf65
23 changed files with 1807 additions and 649 deletions
+16
View File
@@ -0,0 +1,16 @@
return {
{
"EdenEast/nightfox.nvim",
priority = 1000,
config = function()
require("nightfox").setup({
palettes = {
carbonfox = {
bg1 = "#0C0C0C",
}
}
})
vim.cmd.colorscheme("carbonfox")
end
},
}