mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-23 04:05:06 +02:00
plugins/origami: init
This commit is contained in:
parent
cd30817b21
commit
98644a34ab
2 changed files with 66 additions and 0 deletions
18
plugins/by-name/origami/default.nix
Normal file
18
plugins/by-name/origami/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue