|
@@ -86,6 +86,7 @@ M.winbar_filetype_exclude = {
|
|
"harpoon",
|
|
"harpoon",
|
|
"dap-repl",
|
|
"dap-repl",
|
|
"dap-terminal",
|
|
"dap-terminal",
|
|
|
|
+ "dapui_console",
|
|
"lab",
|
|
"lab",
|
|
"Markdown",
|
|
"Markdown",
|
|
"",
|
|
"",
|
|
@@ -125,9 +126,9 @@ M.get_filename = function()
|
|
file_icon = lvim.icons.ui.Watches
|
|
file_icon = lvim.icons.ui.Watches
|
|
end
|
|
end
|
|
|
|
|
|
- if buf_ft == "dapui_console" then
|
|
|
|
- file_icon = lvim.icons.ui.DebugConsole
|
|
|
|
- end
|
|
|
|
|
|
+ -- if buf_ft == "dapui_console" then
|
|
|
|
+ -- file_icon = lvim.icons.ui.DebugConsole
|
|
|
|
+ -- end
|
|
|
|
|
|
local navic_text = vim.api.nvim_get_hl_by_name("Normal", true)
|
|
local navic_text = vim.api.nvim_get_hl_by_name("Normal", true)
|
|
vim.api.nvim_set_hl(0, "Winbar", { fg = navic_text.foreground })
|
|
vim.api.nvim_set_hl(0, "Winbar", { fg = navic_text.foreground })
|
|
@@ -225,3 +226,4 @@ M.create_winbar = function()
|
|
end
|
|
end
|
|
|
|
|
|
return M
|
|
return M
|
|
|
|
+
|