stockholm/lass/2configs/zsh.nix

133 lines
3.4 KiB
Nix
Raw Normal View History

2015-09-19 21:40:51 +00:00
{ config, lib, pkgs, ... }:
{
2022-11-20 00:21:36 +00:00
environment.systemPackages = with pkgs; [
atuin
direnv
fzf
];
environment.variables.ATUIN_CONFIG_DIR = toString (pkgs.writeTextDir "/config.toml" ''
auto_sync = true
update_check = false
sync_address = "http://green.r:8888"
sync_frequency = 0
style = "compact"
'');
2015-09-19 21:40:51 +00:00
programs.zsh = {
enable = true;
shellInit = ''
#disable config wizard
zsh-newuser-install() { :; }
'';
interactiveShellInit = ''
2019-10-14 13:46:56 +00:00
unsetopt nomatch # no matches found urls
2015-09-19 21:40:51 +00:00
setopt autocd extendedglob
bindkey -e
2022-11-20 00:21:36 +00:00
# # setopt inc_append_history
# bindkey '^R' history-incremental-search-backward
2015-09-19 21:40:51 +00:00
#C-x C-e open line in editor
autoload -z edit-command-line
zle -N edit-command-line
bindkey "^X^E" edit-command-line
2018-01-18 22:53:33 +00:00
#fzf inclusion
source ${pkgs.fzf}/share/fzf/completion.zsh
source ${pkgs.fzf}/share/fzf/key-bindings.zsh
2022-11-20 00:21:36 +00:00
# atuin distributed shell history
export ATUIN_NOBIND="true" # disable all keybdinings of atuin
eval "$(atuin init zsh)"
bindkey '^r' _atuin_search_widget # bind ctrl+r to atuin
# use zsh only session history
fc -p
2015-09-19 21:40:51 +00:00
#completion magic
autoload -Uz compinit
compinit
zstyle ':completion:*' menu select
#enable automatic rehashing of $PATH
zstyle ':completion:*' rehash true
2018-02-13 16:34:58 +00:00
#beautiful colors
2018-01-15 23:09:46 +00:00
eval $(dircolors -b ${pkgs.fetchFromGitHub {
owner = "trapd00r";
repo = "LS_COLORS";
2018-05-01 14:04:21 +00:00
rev = "a75fca8545f91abb8a5f802981033ef54bf1eac0";
sha256="1lzj0qnj89mzh76ha137mnz2hf86k278rh0y9x124ghxj9yqsnb4";
2018-01-15 23:09:46 +00:00
}}/LS_COLORS)
2018-02-13 16:34:58 +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
2022-11-20 00:21:53 +00:00
# direnv integration
eval "$(${pkgs.direnv}/bin/direnv hook zsh)"
2015-09-19 21:40:51 +00:00
'';
promptInit = ''
autoload -U promptinit
promptinit
p_error='%(?..%F{red}%?%f )'
t_error='%(?..%? )'
2015-09-19 21:40:51 +00:00
case $UID in
0)
p_username='%F{red}root%f'
t_username='root'
2015-09-19 21:40:51 +00:00
;;
1337)
p_username=""
t_username=""
2015-09-19 21:40:51 +00:00
;;
*)
p_username='%F{blue}%n%f'
t_username='%n'
2015-09-19 21:40:51 +00:00
;;
esac
if test -n "$SSH_CLIENT"; then
p_hostname='@%F{magenta}%M%f '
t_hostname='@%M '
else
p_hostname=""
t_hostname=""
fi
#check if in nix shell
2018-02-13 16:35:21 +00:00
if test -n "$IN_NIX_SHELL"; then
p_nixshell='%F{green}[s]%f '
t_nixshell='[s] '
2015-09-19 21:40:51 +00:00
else
p_nixshell=""
t_nixshell=""
2015-09-19 21:40:51 +00:00
fi
PROMPT="$p_error$p_username$p_hostname$p_nixshell%~ "
TITLE="$t_error$t_username$t_hostname$t_nixshell%~"
case $TERM in
(*xterm* | *rxvt*)
function precmd {
2020-09-27 13:44:29 +00:00
PROMPT_EVALED=$(print -P "$TITLE")
echo -ne "\033]0;$$ $PROMPT_EVALED\007"
}
2020-09-27 13:44:29 +00:00
# This seems broken for some reason
# # This is seen while the shell waits for a command to complete.
# function preexec {
# PROMPT_EVALED=$(print -P "$TITLE")
# echo -ne "\033]0;$$ $PROMPT_EVALED $1\007"
# }
;;
esac
2015-09-19 21:40:51 +00:00
'';
};
environment.shellAliases.ns = "nix-shell --command zsh";
users.defaultUserShell = "/run/current-system/sw/bin/zsh";
2015-09-19 21:40:51 +00:00
}