First release

This commit is contained in:
Mészáros Zoltán
2026-06-16 12:27:51 +02:00
commit f750e44e1a
19 changed files with 1285 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
local status, lualine = pcall( require, "lualine")
if not status then
return
end
local lualine_nightfly = require("lualine.themes.nightfly")
local new_colors = {
blue = "#65D1FF",
green = "#3EFFDC",
violet = "#FF61EF",
yellow = "#FFDA7B",
black = "#000000",
}
lualine_nightfly.normal.a.bg = new_colors.blue
lualine_nightfly.insert.a.bg = new_colors.green
lualine_nightfly.visual.a.bg = new_colors.violet
lualine_nightfly.command = {
a = {
gui = "bold",
bg = new_colors.yellow,
fg = new_colors.black,
},
}
lualine.setup({
options = {
theme = lualine_nightfly
}
})