theme fixes

This commit is contained in:
2025-06-03 22:57:40 +02:00
parent 9b4a1f350b
commit ce4d61699a
3 changed files with 37 additions and 52 deletions

View File

@ -5,7 +5,6 @@ return {
'Isrothy/lualine-diagnostic-message',
},
config = function()
vim.opt.laststatus = 3
require('lualine').setup({
options = {
theme = 'auto',
@ -14,6 +13,7 @@ return {
winbar = { 'dap-repl', 'dapui_console' },
},
section_separators = { left = '', right = '' },
component_separators = { left = '', right = '' },
},
globalstatus = true,
extensions = { 'oil', 'toggleterm' },
@ -55,53 +55,6 @@ return {
},
},
},
winbar = {
lualine_a = {
{
'filename',
path = 0,
file_status = true,
separator = { left = '', right = '' },
},
},
lualine_b = {
{
'filesize',
},
{
'diagnostic-message',
icons = {
error = '',
warn = '',
info = '',
hint = '',
},
},
},
lualine_c = {},
lualine_x = {},
lualine_y = {},
lualine_z = {},
},
inactive_winbar = {
lualine_a = {
{
'filename',
path = 0,
file_status = true,
separator = { left = '', right = '' },
},
},
lualine_b = {
{
'filesize',
},
},
lualine_c = {},
lualine_x = {},
lualine_y = {},
lualine_z = {},
},
tabline = {
lualine_a = {},
lualine_b = {},
@ -111,8 +64,8 @@ return {
mode = 2,
tabs_color = {
-- Same values as the general color option can be used here.
active = { bg = 'yellow', fg = 'black' },
inactive = { bg = 'grey' },
active = { bg = 'orange', fg = 'black' },
inactive = { bg = 'grey', fg = 'black' },
},
},
},
@ -122,4 +75,5 @@ return {
},
})
end,
enabled = true,
}