nix-community.nixvim/plugins/languages/zig.nix

26 lines
519 B
Nix
Raw Normal View History

{
lib,
config,
helpers,
pkgs,
...
}:
with lib;
with helpers.vim-plugin;
mkVimPlugin config {
name = "zig";
originalName = "zig.vim";
package = pkgs.vimPlugins.zig-vim;
globalPrefix = "zig_";
addExtraConfigRenameWarning = true;
2021-03-31 13:56:18 +01:00
# Possibly add option to disable Treesitter highlighting if this is installed
options = {
formatOnSave = mkDefaultOpt {
type = types.bool;
global = "fmt_autosave";
description = "Run zig fmt on save";
};
};
}