Remove unused aliases
This commit is contained in:
parent
0153b47408
commit
6b04ee0259
|
@ -5,36 +5,26 @@
|
||||||
host,
|
host,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs; [fzf eza git fd];
|
home.packages = with pkgs; [fzf git];
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
|
|
||||||
oh-my-zsh = {
|
oh-my-zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = ["git" "fzf"];
|
plugins = ["git" "fzf"];
|
||||||
};
|
};
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
# Utils
|
# Utils
|
||||||
c = "clear";
|
c = "clear";
|
||||||
cd = "z";
|
cd = "z";
|
||||||
tt = "gtrash put";
|
tt = "gtrash put";
|
||||||
cat = "bat";
|
|
||||||
nano = "micro";
|
|
||||||
code = "codium";
|
|
||||||
py = "python";
|
|
||||||
icat = "kitten icat";
|
icat = "kitten icat";
|
||||||
dsize = "du -hs";
|
|
||||||
findw = "grep -rl";
|
|
||||||
pdf = "tdf";
|
|
||||||
open = "xdg-open";
|
open = "xdg-open";
|
||||||
find = "fd";
|
|
||||||
|
|
||||||
l = "eza --icons -a --group-directories-first -1"; #EZA_ICON_SPACING=2
|
|
||||||
ll = "eza --icons -a --group-directories-first -1 --no-user --long";
|
|
||||||
tree = "eza --icons --tree --group-directories-first";
|
|
||||||
|
|
||||||
# Nixos
|
# Nixos
|
||||||
cdnix = "cd ~/nixos-config && codium ~/nixos-config";
|
cdnix = "cd ~/nixos-config && codium ~/nixos-config";
|
||||||
|
|
Loading…
Reference in a new issue