LW
Size: a a a
N
N
N
Т
# Zsh+ ohMyZsh config
programs.zsh.enable = true;
programs.zsh.ohMyZsh = {
enable = true;
plugins = [ "git" "sudo" "docker" "kubectl" ];
};
programs.zsh.interactiveShellInit = ''
export ZSH=${pkgs.oh-my-zsh}/share/oh-my-zsh/
# Customize your oh-my-zsh options here
ZSH_THEME="robbyrussell"
plugins=(git docker)
bindkey '\e[5~' history-beginning-search-backward
bindkey '\e[6~' history-beginning-search-forward
HISTFILESIZE=500000
HISTSIZE=500000
setopt SHARE_HISTORY
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_DUPS
setopt INC_APPEND_HISTORY
autoload -U compinit && compinit
unsetopt menu_complete
setopt completealiases
if [ -f ~/.aliases ]; then
source ~/.aliases
fi
source $ZSH/oh-my-zsh.sh
'';
##
programs.zsh.promptInit = "";
N
# Zsh+ ohMyZsh config
programs.zsh.enable = true;
programs.zsh.ohMyZsh = {
enable = true;
plugins = [ "git" "sudo" "docker" "kubectl" ];
};
programs.zsh.interactiveShellInit = ''
export ZSH=${pkgs.oh-my-zsh}/share/oh-my-zsh/
# Customize your oh-my-zsh options here
ZSH_THEME="robbyrussell"
plugins=(git docker)
bindkey '\e[5~' history-beginning-search-backward
bindkey '\e[6~' history-beginning-search-forward
HISTFILESIZE=500000
HISTSIZE=500000
setopt SHARE_HISTORY
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_DUPS
setopt INC_APPEND_HISTORY
autoload -U compinit && compinit
unsetopt menu_complete
setopt completealiases
if [ -f ~/.aliases ]; then
source ~/.aliases
fi
source $ZSH/oh-my-zsh.sh
'';
##
programs.zsh.promptInit = "";
N
N
N
N