mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
14 lines
259 B
Nix
14 lines
259 B
Nix
{
|
|
config,
|
|
helpers,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "nix";
|
|
description = "vim-nix";
|
|
package = pkgs.vimPlugins.vim-nix;
|
|
|
|
# Possibly add option to disable Treesitter highlighting if this is installed
|
|
options = {};
|
|
}
|