diff --git a/lua/setup/lualine.lua b/lua/setup/lualine.lua index f5427ed..a05db60 100644 --- a/lua/setup/lualine.lua +++ b/lua/setup/lualine.lua @@ -1,6 +1,12 @@ vim.opt.laststatus = 3 require('lualine').setup({ - options = { theme = 'gruvbox-flat' }, + options = { + theme = 'gruvbox-flat', + disabled_filetypes = { + statusline = {}, + winbar = { 'dap-repl', 'dapui_console' }, + }, + }, sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } }, inactive_sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } }, globalstatus = true,