This commit is contained in:
2025-05-14 09:33:08 -05:00
parent 239c37bf98
commit 4da409aabf
14 changed files with 218 additions and 46 deletions

View File

@@ -4,5 +4,6 @@
./zsh
./git.nix
./packages.nix
./neovim.nix
];
}

8
modules/home/neovim.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs, inputs, ... }:
{
programs.neovim = {
enable = true;
vimAlias = true;
viAlias = true;
};
}

View File

@@ -2,9 +2,10 @@
{
home.packages = with pkgs; [
git
zsh
neofetch
btop
zsh
wl-clipboard
kitty
vim

View File

@@ -0,0 +1,6 @@
{
programs.zsh.plugins = [
{
}
}