chore(nvim): lightline config
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
33e59263d3
commit
81a472d8d5
|
@ -18,6 +18,33 @@ local function format_diff_element(val, sym)
|
|||
return sym .. val
|
||||
end
|
||||
|
||||
local diagnostics = {
|
||||
"diagnostics",
|
||||
sources = { "nvim_lsp" },
|
||||
diagnostics_color = {
|
||||
error = { fg = "#ffffff", bg = "#bf616a" },
|
||||
warn = { fg = "#ebcb8b" },
|
||||
info = { fg = "#81a1c1" },
|
||||
hint = { fg = "#a3be8c" },
|
||||
},
|
||||
always_visible = false,
|
||||
separator = { left = " " },
|
||||
symbols = {
|
||||
error = function(count)
|
||||
return count .. "E"
|
||||
end,
|
||||
warn = function(count)
|
||||
return count .. "W"
|
||||
end,
|
||||
info = function(count)
|
||||
return count .. "I"
|
||||
end,
|
||||
hint = function(count)
|
||||
return count .. "H"
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
icons_enabled = false,
|
||||
|
@ -47,41 +74,20 @@ require("lualine").setup({
|
|||
return format_diff_element(vim.b.gitsigns_status_dict.added, "+")
|
||||
end,
|
||||
color = { fg = "#a3be8c" },
|
||||
padding = 1,
|
||||
},
|
||||
{
|
||||
function()
|
||||
return format_diff_element(vim.b.gitsigns_status_dict.changed, "~")
|
||||
end,
|
||||
color = { fg = "#ebcb8b" },
|
||||
padding = 1,
|
||||
},
|
||||
{
|
||||
function()
|
||||
return format_diff_element(vim.b.gitsigns_status_dict.removed, "-")
|
||||
end,
|
||||
color = { fg = "#bf616a" },
|
||||
padding = 1,
|
||||
},
|
||||
{
|
||||
"diagnostics",
|
||||
sources = { "nvim_lsp" },
|
||||
always_visible = false,
|
||||
symbols = {
|
||||
error = function(count)
|
||||
return count .. "E"
|
||||
end,
|
||||
warn = function(count)
|
||||
return count .. "W"
|
||||
end,
|
||||
info = function(count)
|
||||
return count .. "I"
|
||||
end,
|
||||
hint = function(count)
|
||||
return count .. "H"
|
||||
end,
|
||||
},
|
||||
},
|
||||
diagnostics,
|
||||
},
|
||||
lualine_x = {
|
||||
{
|
||||
|
@ -102,7 +108,7 @@ require("lualine").setup({
|
|||
inactive_sections = {
|
||||
lualine_a = {},
|
||||
lualine_b = {},
|
||||
lualine_c = { "filename" },
|
||||
lualine_c = { "filename", diagnostics },
|
||||
lualine_x = { { "location", padding = { right = 0 } } },
|
||||
lualine_y = {},
|
||||
lualine_z = {},
|
||||
|
|
Loading…
Reference in New Issue