disable lualine winbar for dap repl and console

This commit is contained in:
Oliver Hartmann 2022-11-19 10:35:47 +01:00
parent 15b03ee11f
commit 9b8097dc36

View File

@ -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,