This commit is contained in:
Hadi
2024-03-13 19:26:10 +01:00
parent 7632c0fd10
commit a189d592ed
12 changed files with 71 additions and 111 deletions

View File

@@ -9,7 +9,10 @@
syntaxHighlighting.enable = true;
historySubstringSearch.enable = true;
initExtraFirst = "neofetch";
initExtraFirst = ''
bindkey -e
${pkgs.neofetch}/bin/neofetch
'';
history = {
ignoreDups = true;
@@ -24,7 +27,6 @@
'';
shellAliases = {
sl = "ls";
vim = "nvim";
v = "nvim";
c = "clear";
@@ -32,9 +34,10 @@
celar = "clear";
e = "exit";
cd = "z";
ls = "eza --icons=always";
open = "xdg-open";
icat = "kitty +kitten icat";
ls = "${pkgs.eza}/bin/eza --icons=always";
sl = "ls";
open = "${pkgs.xdg_utils}/bin/xdg-open";
icat = "${pkgs.kitty}/bin/kitty +kitten icat";
};
};
}