nvim: remove fschauen namespace from custom lualine components

This commit is contained in:
Fernando Schauenburg 2025-07-01 18:10:11 +02:00
parent d86261158d
commit d5992d8ad6
6 changed files with 5 additions and 5 deletions

View file

@ -39,24 +39,24 @@ return {
"fileformat", "fileformat",
cond = window.is_medium, cond = window.is_medium,
} }
local filename = "fschauen.filename" local filename = "custom.filename"
local filetype = { local filetype = {
dynamic_color("filetype"), dynamic_color("filetype"),
cond = window.is_medium, cond = window.is_medium,
} }
local mode = "fschauen.mode" local mode = "custom.mode"
local searchcount = "fschauen.searchcount" local searchcount = "custom.searchcount"
local spell = indicator { local spell = indicator {
icon = icons.ui.SpellCheck, icon = icons.ui.SpellCheck,
cond = function() return vim.o.spell end, cond = function() return vim.o.spell end,
} }
local status = { local status = {
dynamic_color("fschauen.status"), dynamic_color("custom.status"),
color = { fg = orange }, color = { fg = orange },
padding = 0, padding = 0,
} }
local whitespace = { local whitespace = {
dynamic_color("fschauen.whitespace"), dynamic_color("custom.whitespace"),
cond = window.is_wide, cond = window.is_wide,
} }
local wrap = indicator { local wrap = indicator {