🔨 chore: initial commit

Signed-off-by: xtrm <oss@xtrm.me>
This commit is contained in:
xtrm
2025-02-19 13:05:06 +01:00
commit e9f538ed92
14 changed files with 343 additions and 0 deletions

12
vm/aliases.nix Normal file
View File

@ -0,0 +1,12 @@
{
v = "nvim";
vi = "nvim";
vim = "nvim";
ls = "eza --color=auto --group-directories-first";
l = "ls -la --no-git";
ll = "ls -la";
cat = "bat";
gs = "git status";
gd = "git diff";
gds = "git diff --staged";
}