9 lines
116 B
Nix
9 lines
116 B
Nix
|
{ callPackage }:
|
||
|
|
||
|
{
|
||
|
|
||
|
# My custom vim config, maybe of interest to others as well
|
||
|
vim = callPackage ./vim {};
|
||
|
|
||
|
}
|