mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-09 16:54:36 +02:00
plugins/lastplace: add plugin + test (#322)
This commit is contained in:
parent
82f04e3cf1
commit
f79dccdc2e
3 changed files with 66 additions and 0 deletions
16
tests/test-sources/plugins/utils/lastplace.nix
Normal file
16
tests/test-sources/plugins/utils/lastplace.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.lastplace.enable = true;
|
||||
};
|
||||
|
||||
# All the upstream default options of lastplace
|
||||
defaults = {
|
||||
plugins.lastplace = {
|
||||
enable = true;
|
||||
|
||||
ignoreBuftype = ["quickfix" "nofix" "help"];
|
||||
ignoreFiletype = ["gitcommit" "gitrebase" "svn" "hgcommit"];
|
||||
openFolds = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue