mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-16 23:41:43 +02:00
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
Signed-off-by: saygo-png <saygo.mail@proton.me>
43 lines
908 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|