stockholm/lass/2configs/zsh.nix

125 lines
3.2 KiB
Nix
Raw Normal View History

2015-09-19 21:40:51 +00:00
{ config, lib, pkgs, ... }:
{
programs.zsh = {
enable = true;
shellInit = ''
#disable config wizard
zsh-newuser-install() { :; }
'';
interactiveShellInit = ''
setopt autocd extendedglob
bindkey -e
#history magic
bindkey "" up-line-or-local-history
bindkey "" down-line-or-local-history
up-line-or-local-history() {
zle set-local-history 1
zle up-line-or-history
zle set-local-history 0
}
zle -N up-line-or-local-history
down-line-or-local-history() {
zle set-local-history 1
zle down-line-or-history
zle set-local-history 0
}
zle -N down-line-or-local-history
setopt share_history
setopt hist_ignore_dups
# setopt inc_append_history
bindkey '^R' history-incremental-search-backward
#C-x C-e open line in editor
autoload -z edit-command-line
zle -N edit-command-line
bindkey "^X^E" edit-command-line
#completion magic
autoload -Uz compinit
compinit
zstyle ':completion:*' menu select
#enable automatic rehashing of $PATH
zstyle ':completion:*' rehash true
2018-01-15 23:09:46 +00:00
eval $(dircolors -b ${pkgs.fetchFromGitHub {
owner = "trapd00r";
repo = "LS_COLORS";
rev = "master";
sha256="05lh5w3bgj9h8d8lrbbwbzw8788709cnzzkl8yh7m1dawkpf6nlp";
}}/LS_COLORS)
2015-09-19 21:40:51 +00:00
# export MANPAGER='sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" | vim -R -c "set ft=man nonu nomod nolist" -'
#beautiful colors
alias ls='ls --color'
2018-01-15 23:09:46 +00:00
# zstyle ':completion:*:default' list-colors ''${(s.:.)LS_COLORS}
2015-09-19 21:40:51 +00:00
#emacs bindings
bindkey "[7~" beginning-of-line
bindkey "[8~" end-of-line
bindkey "Oc" emacs-forward-word
bindkey "Od" emacs-backward-word
#aliases
alias ll='ls -l'
alias la='ls -la'
#fancy window title magic
case $TERM in
(*xterm* | *rxvt*)
function precmd {
2018-01-15 23:09:46 +00:00
if test -n "$SSH_CLIENT"; then
echo -ne "\033]0;$$ $USER@$HOST $PWD\007"
else
echo -ne "\033]0;$$ $USER@$PWD\007"
fi
2015-09-19 21:40:51 +00:00
}
# This is seen while the shell waits for a command to complete.
function preexec {
2018-01-15 23:09:46 +00:00
if test -n "$SSH_CLIENT"; then
echo -ne "\033]0;$$ $USER@$HOST $PWD $1\007"
else
echo -ne "\033]0;$$ $USER@$PWD $1\007"
fi
2015-09-19 21:40:51 +00:00
}
;;
esac
'';
promptInit = ''
2016-06-26 15:10:25 +00:00
# TODO: figure out why we need to set this here
HISTSIZE=900001
HISTFILESIZE=$HISTSIZE
SAVEHIST=$HISTSIZE
2015-09-19 21:40:51 +00:00
autoload -U promptinit
promptinit
error='%(?..%F{red}%?%f )'
case $UID in
0)
2015-09-23 13:15:56 +00:00
username='%F{red}root%f '
2015-09-19 21:40:51 +00:00
;;
1337)
username=""
;;
*)
2015-09-23 13:15:56 +00:00
username='%F{blue}%n%f '
2015-09-19 21:40:51 +00:00
;;
esac
if test -n "$SSH_CLIENT"; then
PROMPT="$error$username@%F{magenta}%M%f %~ "
else
2015-09-23 13:15:56 +00:00
PROMPT="$error$username%~ "
2015-09-19 21:40:51 +00:00
fi
'';
};
2017-01-17 14:57:52 +00:00
users.users.mainUser.shell = "/run/current-system/sw/bin/zsh";
2018-01-15 23:09:46 +00:00
users.users.root.shell = "/run/current-system/sw/bin/zsh";
2015-09-19 21:40:51 +00:00
}