mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
17 lines
357 B
Nix
17 lines
357 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
} @ attrs: let
|
|
helpers = import ../helpers.nix {inherit lib;};
|
|
in
|
|
with helpers.vim-plugin;
|
|
with lib;
|
|
mkVimPlugin attrs {
|
|
name = "nix";
|
|
description = "vim-nix";
|
|
package = pkgs.vimPlugins.vim-nix;
|
|
|
|
# Possibly add option to disable Treesitter highlighting if this is installed
|
|
options = {};
|
|
}
|