Amended color scheme and lazy plugins to be in a more proper format than my initial hack solution.,

This commit is contained in:
2025-05-16 18:41:01 -04:00
parent 425f4581c7
commit 4634867987
3 changed files with 33 additions and 27 deletions

View File

@@ -0,0 +1,17 @@
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
style = "night",
on_highlights = function(h1)
h1.LineNrAbove = {
fg = "#6ab8ff",
}
h1.LineNrBelow = {
fg = "#ff6188"
}
end,
on_colors = function() end,
},
}

View File

@@ -1,24 +0,0 @@
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,
},
},
}