Dot_Files/.config/nvim/lua/plugins/configs/_stabilize.lua
2022-05-11 21:00:57 -05:00

21 lines
696 B
Lua
Executable File

require('stabilize').setup({
-- stabilize window even when current cursor position will be hidden behind new window
force = true,
-- set context mark to register on force event which can be jumped to with '<forcemark>
forcemark = nil,
-- do not manage windows matching these file/buftypes
ignore = {
filetype = { 'packer', 'Dashboard', 'Trouble', 'TelescopePrompt' },
buftype = {
'packer',
'Dashboard',
'terminal',
'quickfix',
'loclist',
'LspInstall',
},
},
-- comma-separated list of autocmds that wil trigger the plugins window restore function
nested = nil,
})