refractor(nvim): Refractor lualine.nvim

This commit is contained in:
js0ny 2025-01-26 20:47:38 +00:00
parent a5218cdea7
commit 21a77b4524
11 changed files with 231 additions and 208 deletions

View file

@ -0,0 +1,16 @@
local colors = {
bg = "#202328",
fg = "#bbc2cf",
yellow = "#ECBE7B",
cyan = "#008080",
darkblue = "#081633",
green = "#98be65",
orange = "#FF8800",
violet = "#a9a1e1",
magenta = "#c678dd",
purple = "#c678dd",
blue = "#51afef",
red = "#ec5f67",
}
return colors

View file

@ -1,9 +1,4 @@
local signs = {
Error = "",
Warning = "",
Hint = "",
Information = "",
}
local signs = require("config.icons").diagnostics
for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type

View file

@ -0,0 +1,19 @@
local M = {
diagnostics = {
Error = "",
Warning = "",
Hint = "",
Information = "",
},
lsp = "",
indent = "",
git = {
Change = "",
Add = "",
Delete = "",
Rename = "",
Branch = "",
},
}
return M