mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
17 lines
323 B
Nix
17 lines
323 B
Nix
{
|
|
config,
|
|
lib,
|
|
helpers,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "nix";
|
|
originalName = "vim-nix";
|
|
defaultPackage = pkgs.vimPlugins.vim-nix;
|
|
|
|
maintainers = [lib.maintainers.GaetanLepage];
|
|
|
|
# Possibly add option to disable Treesitter highlighting if this is installed
|
|
options = {};
|
|
}
|