nvim: single border packer

This commit is contained in:
PowerUser64 2022-08-13 04:20:43 -07:00
parent 52de84cbc9
commit 616a424d0e

View file

@ -505,8 +505,12 @@ return require('packer').startup({function()
-- } -- }
end, end,
config = { config = {
-- Floating window -- Make packer a floating window with single border
display = { open_fn = require('packer.util').float }, display = {
open_fn = function()
return require('packer.util').float({ border = 'single' })
end
},
-- Move to lua dir so impatient.nvim can cache it -- Move to lua dir so impatient.nvim can cache it
compile_path = vim.fn.stdpath('config')..'/lua/packer_compiled.lua', compile_path = vim.fn.stdpath('config')..'/lua/packer_compiled.lua',
-- Don't ask before removing plugins -- Don't ask before removing plugins