nix-community.nixvim/plugins/by-name/faster/default.nix
saygo-png a16c89c175
Some checks failed
Publish every Git push to main to FlakeHub / flakehub-publish (push) Has been cancelled
Publish every git push to Flakestry / publish-flake (push) Has been cancelled
Documentation / Version info (push) Has been cancelled
Documentation / Build (push) Has been cancelled
Documentation / Combine builds (push) Has been cancelled
Documentation / Deploy (push) Has been cancelled
plugins/faster: init
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-07-31 15:55:15 +00:00

43 lines
908 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "faster";
packPathName = "faster.nvim";
package = "faster-nvim";
description = "Selectively disable some features when a big file is opened or macro is executed.";
maintainers = [ lib.maintainers.saygo-png ];
settingsExample = {
behaviours = {
bigfile = {
on = true;
features_disabled = [
"lsp"
"treesitter"
];
filesize = 2;
pattern = "*";
extra_patterns = [
{
filesize = 1.1;
pattern = "*.md";
}
{ pattern = "*.log"; }
];
};
fastmacro = {
on = true;
features_disabled = [ "lualine" ];
};
};
features = {
lsp = {
on = true;
defer = false;
};
treesitter = {
on = true;
defer = false;
};
};
};
}