reafactor: editors

This commit is contained in:
Ryan Yin
2024-01-05 16:17:27 +08:00
parent 1e260e4d17
commit 3d93e1b565
5 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
{mylib, ...}: {
imports = mylib.scanPaths ./.;
}

View File

@@ -0,0 +1,6 @@
{pkgs, ...}: {
programs.helix = {
enable = true;
package = pkgs.helix;
};
}

View File

@@ -0,0 +1,12 @@
{pkgs, ...}: {
programs = {
neovim = {
enable = true;
package = pkgs.neovim;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
};
}