Added NeoVim config files
This commit is contained in:
24
files/system/etc/xdg/nvim/lua/plugins/init.lua
Normal file
24
files/system/etc/xdg/nvim/lua/plugins/init.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user