mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
19 lines
493 B
Nix
19 lines
493 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.plugins.mkNeovimPlugin {
|
||
|
name = "origami";
|
||
|
packPathName = "nvim-origami";
|
||
|
package = "nvim-origami";
|
||
|
|
||
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
||
|
|
||
|
# Ensures `nvim-ufo` (if enabled) is loaded before `origami`
|
||
|
# Default priority is 1000, mkBefore is 500 and mkAfter is 1500
|
||
|
configLocation = lib.mkOrder 1100 "extraConfigLua";
|
||
|
|
||
|
settingsExample = {
|
||
|
keepFoldsAcrossSessions = true;
|
||
|
pauseFoldsOnSearch = true;
|
||
|
setupFoldKeymaps = false;
|
||
|
};
|
||
|
}
|