plugins.lastplace.settings
Options provided to the require('nvim-lastplace').setup
function.
Type: attribute set of anything
Default:
{ }
Example:
{
settings = {
lastplace_ignore_buftype = [
"help"
];
lastplace_ignore_filetype = [
"svn"
];
lastplace_open_folds = false;
};
}
Declared by:
plugins.lastplace.settings.lastplace_ignore_buftype
The list of buffer types to ignore by lastplace.
Type: null or (list of (string or raw lua code)) or raw lua code
Default:
null
Plugin default:
[
"quickfix"
"nofix"
"help"
]
Declared by:
plugins.lastplace.settings.lastplace_ignore_filetype
The list of file types to ignore by lastplace.
Type: null or (list of (string or raw lua code)) or raw lua code
Default:
null
Plugin default:
[
"gitcommit"
"gitrebase"
"svn"
"hgcommit"
]
Declared by:
plugins.lastplace.settings.lastplace_open_folds
Whether closed folds are automatically opened when jumping to the last edit position.
Type: null or boolean or raw lua code
Default:
null
Plugin default: true
Declared by: