feat: Add vim basic config

This commit is contained in:
ulic-youthlic 2025-11-06 18:27:29 +08:00
parent 05d4f717c1
commit fc3fa26a27
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
4 changed files with 90 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ outputs, ... }:
_final: prev:
let
inherit (prev.stdenv.hostPlatform) system;
in
{
vim = outputs.packages.${system}.vim';
}