Skip to content

Commit

Permalink
fix(nvim): select ui is too big
Browse files Browse the repository at this point in the history
  • Loading branch information
spywhere committed Dec 18, 2023
1 parent cdde075 commit e047df8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion configs/nvim/lua/plugin/appearance/dressing.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ local registry = require('lib.registry')
registry.install {
'stevearc/dressing.nvim',
config = function ()
require('dressing').setup {}
require('dressing').setup {
select = {
fzf_lua = {
winopts = {
height = 15,
width = 80
},
fzf_opts = {
['--layout'] = 'reverse'
}
}
}
}
end
}

0 comments on commit e047df8

Please sign in to comment.