nix-community.nixvim/plugins/languages/nix.nix
2021-03-01 19:54:40 +00:00

12 lines
315 B
Nix

{ lib, pkgs, ... }@attrs:
let
helpers = import ../helpers.nix { lib = lib; };
in with helpers; with lib;
mkPlugin attrs {
name = "nix";
description = "Enable nix";
extraPlugins = [ pkgs.vimPlugins.vim-nix ];
# Possibly add option to disable Treesitter highlighting if this is installed
options = {};
}