Replies: 1 comment
-
|
Just remove the path source in the setup call: require('dropbar').setup({
bar = {
sources = function()
local sources = require('dropbar.sources')
if vim.bo[buf].ft == 'markdown' then
return { sources.markdown }
end
if vim.bo[buf].buftype == 'terminal' then
return { sources.terminal }
end
return {
utils.source.fallback({
sources.lsp,
sources.treesitter,
}),
}
end,
},
}) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I was wondering if it's possible to hide the file name from the bar so it's just the LSP symbols.
Beta Was this translation helpful? Give feedback.
All reactions