mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-20 00:59:04 +05:30
29 lines
742 B
Nix
29 lines
742 B
Nix
{lib, ...}: {
|
|
flake.modules.homeManager.shell = {pkgs, ...}: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
history = {
|
|
append = true;
|
|
share = true;
|
|
expireDuplicatesFirst = true;
|
|
ignoreDups = true;
|
|
size = 1000000;
|
|
save = 1000000;
|
|
path = "$HOME/.local/share/zsh/.zsh_history";
|
|
};
|
|
fastSyntaxHighlighting.enable = true;
|
|
autosuggestion.enable = true;
|
|
initContent = ''
|
|
${lib.getExe pkgs.fastfetch}
|
|
bindkey "^A" vi-beginning-of-line
|
|
bindkey "^E" vi-end-of-line
|
|
bindkey '^R' fzf-history-widget
|
|
|
|
PATH=$PATH:~/.cargo/bin:~/.local/bin
|
|
alias stui='systemctl-tui'
|
|
alias vim='nvim --clean'
|
|
'';
|
|
};
|
|
};
|
|
}
|