dotfiles/home/zsh/default.nix

88 lines
2.9 KiB
Nix
Raw Normal View History

2024-05-31 15:40:15 +02:00
{ config, pkgs, ... }:
2024-05-31 15:26:03 +02:00
{
2024-06-01 16:56:07 +02:00
home.packages = with pkgs; [
fzy
lf
curl
fd
zsh-powerlevel10k
zsh-autocomplete
zsh-vi-mode
ripgrep
rsync
moreutils
];
home.sessionVariables = {
BROWSER = "firefox";
GPULAB_CERT = "${config.xdg.dataHome}/gpulab.pem";
GPULAB_DEV = "False";
2024-06-03 16:02:50 +02:00
GCC_COLORS =
"error = '01;31:warning = '01;35:note = '01;36:caret = '01;32:locus = '01:quote = '01'";
2024-06-01 16:56:07 +02:00
ARCHFLAGS = "-arch x86_64";
TERM = "screen-256color";
PYTHONDONTWRITEBYTECODE = "1";
GOPATH = "${config.xdg.dataHome}/go";
};
programs.command-not-found.enable = true;
programs.zoxide = {
enable = true;
enableZshIntegration = true;
};
2024-06-03 16:02:50 +02:00
programs.fzf = { enable = true; };
2024-06-01 16:56:07 +02:00
programs.zsh = {
enable = true;
enableCompletion = true;
syntaxHighlighting.enable = false;
autosuggestion.enable = true;
2024-05-31 15:26:03 +02:00
2024-06-01 16:56:07 +02:00
initExtraFirst = ''
2024-06-02 13:36:24 +02:00
source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
source ${./files/p10k.zsh}
source ${pkgs.zsh-vi-mode}/share/zsh-vi-mode/zsh-vi-mode.plugin.zsh
2024-06-01 16:56:07 +02:00
function zvm_after_init() {
2024-06-02 13:36:24 +02:00
source ${./files/term.zsh}
source ${./files/completion.zsh}
source ${./files/waypipe.zsh}
2024-06-01 16:56:07 +02:00
if [ -n "\$\{commands[fzf-share]\}" ]; then
source "$(fzf-share)/key-bindings.zsh"
source "$(fzf-share)/completion.zsh"
fi
2024-06-02 13:36:24 +02:00
source ${./files/keys.zsh}
2024-06-01 16:56:07 +02:00
}
'';
2024-05-31 17:49:42 +02:00
2024-06-01 16:56:07 +02:00
shellAliases = {
mallorea = "run_waypipe mallorea";
vault = "run_waypipe vault";
riva = "run_waypipe riva";
kell = "run_waypipe kell";
aloria = "run_waypipe aloria";
2024-05-31 17:33:30 +02:00
2024-06-01 16:56:07 +02:00
ll = "ls -lhat";
ls = "ls --color=auto";
2024-06-03 16:02:50 +02:00
lf = ''cd "$(${pkgs.lf}/bin/lf -print-last-dir)"'';
2024-05-31 17:33:30 +02:00
2024-06-01 16:56:07 +02:00
compress = "tar --use-compress-program = lbzip2 -cvf";
2024-06-03 16:02:50 +02:00
wget = ''wget --hsts-file = "$XDG_DATA_HOME/wget-hsts"'';
2024-06-01 16:56:07 +02:00
python = "python3";
2024-06-03 16:02:50 +02:00
v = ''
nvim -c ':lua require("oil").open()' && cd "$(cat /tmp/oil_dir 2> /dev/null || pwd)"'';
cpr =
"rsync --archive -hh --partial --info = stats1,progress2 --modify-window = 1";
mvr =
"rsync --archive -hh --partial --info = stats1,progress2 --modify-window = 1 --remove-source-files";
rg =
"rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'";
ag =
"rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'";
push = ''git add -A && git commit -m "`date`" && git push'';
2024-06-01 16:56:07 +02:00
reset = "tput reset";
2024-05-31 15:26:03 +02:00
};
2024-06-01 16:56:07 +02:00
history.size = 10000000;
history.save = 10000000;
history.path = "${config.xdg.dataHome}/zsh/history";
autocd = true;
};
2024-05-31 15:26:03 +02:00
}