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

18 lines
346 B
Nix
Raw Normal View History

{
lib,
pkgs,
...
} @ attrs: let
helpers = import ../helpers.nix {inherit lib;};
in
with helpers;
with lib;
mkPlugin attrs {
name = "nix";
description = "Enable nix";
package = pkgs.vimPlugins.vim-nix;
2021-03-01 19:54:40 +00:00
# Possibly add option to disable Treesitter highlighting if this is installed
options = {};
}