Skip to content

Commit

Permalink
fix: only enabled dropar.nvim if nvim version >= 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Mar 27, 2024
1 parent 6df0e2f commit c4b4586
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,9 @@ return {

{ -- or show symbols in the current file as breadcrumbs
'Bekaboo/dropbar.nvim',
enabled = true,
enabled = function()
return vim.fn.has 'nvim-0.10' == 1
end,
dependencies = {
'nvim-telescope/telescope-fzf-native.nvim',
},
Expand Down

0 comments on commit c4b4586

Please sign in to comment.