Skip to content

Commit

Permalink
fix(config): wrong sources path (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
gh-liu authored Jul 4, 2023
1 parent 4b517a7 commit a718484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/dropbar/configs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ M.opts = {
hover = true,
---@type dropbar_source_t[]|fun(buf: integer, win: integer): dropbar_source_t[]
sources = function(buf, _)
local sources = require('plugin.winbar.sources')
local sources = require('dropbar.sources')
if vim.bo[buf].ft == 'markdown' then
return {
sources.path,
Expand Down

0 comments on commit a718484

Please sign in to comment.