nvim: single border packer
This commit is contained in:
parent
52de84cbc9
commit
616a424d0e
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue