How do I remove a source? (I don't have enough room for everything) #87
-
I've determined that I need something like this: use {
'Bekaboo/dropbar.nvim',
requires = {
"nvim-tree/nvim-web-devicons",
} ,
config = function ()
require("dropbar").setup({
bar = {
sources = {
}
}
})
end
} but from the README, it seems that I need to re-define all the functions? |
Beta Was this translation helpful? Give feedback.
Answered by
NullVoxPopuli
Sep 12, 2023
Replies: 1 comment
-
Ah-ha! I needed to do this: use {
'Bekaboo/dropbar.nvim',
requires = {
"nvim-tree/nvim-web-devicons",
} ,
config = function ()
require("dropbar").setup({
bar = {
sources = function ()
local sources = require('dropbar.sources')
return { sources.path }
end
}
})
end
} I learned from: #76 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
NullVoxPopuli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah-ha!
I needed to do this:
I learned from: #76