Skip to content

Commit f76051e

Browse files
committed
plugins/compiler: init
1 parent 4f01fd9 commit f76051e

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
lib,
3+
...
4+
}:
5+
lib.nixvim.neovim-plugin.mkNeovimPlugin {
6+
name = "compiler";
7+
originalName = "compiler.nvim";
8+
package = "compiler-nvim";
9+
10+
maintainers = [ lib.maintainers.khaneliman ];
11+
12+
description = ''
13+
> [!Note]
14+
> Some languages require you manually install their compilers in your machine, so `compiler.nvim` is able to call them.
15+
> Please check [here], as the packages will be different depending your operative system.
16+
17+
[here]: https://github.com/Zeioth/Compiler.nvim/wiki/how-to-install-the-required-dependencies
18+
'';
19+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
empty = {
3+
plugins.compiler.enable = true;
4+
};
5+
}

0 commit comments

Comments
 (0)