Added NeoVim config files

This commit is contained in:
2025-05-14 12:21:15 -04:00
parent 5c678bd59a
commit b71aa51dc0
9 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
return {
{
"LazyVim/LazyVim",
import = "lazyvim.plugins",
opts = {
colorscheme = function()
local tokyonight = require("tokyonight")
tokyonight.setup({
style = "night",
on_highlights = function(hl)
hl.LineNrAbove = {
fg = "#6ab8ff",
}
hl.LineNrBelow = {
fg = "#ff6188",
}
end,
on_colors = function() end,
})
tokyonight.load()
end,
},
},
}