Gitiles
Code Review
Sign In
git.clicks.codes
/
Minion
/
NixFiles
/
68791c87ed661e3a527e1ed30e588589c2e48208
/
.
/
modules
/
neovim
/
venn
/
default.nix
blob: dae9bc6293547850db1bf4fc7cdaf3d08fe0c0de [
file
] [
log
] [
blame
]
Skyler Grey
3d1b450
2022-10-31 00:11:11 +0000
[
diff
] [
blame
]
1
{
pkgs
,
...}:
{
2
programs
.
neovim
=
{
3
plugins
=
[
4
pkgs
.
vimPlugins
.
venn
-
nvim
5
];
6
extraConfig
=
''
7
source $
{./
venn
.
lua
}
8
''
;
9
};
10
}