From 52e21f29751895f232fccb55ddef53fc37d68713 Mon Sep 17 00:00:00 2001 From: Marvin Johanning Date: Tue, 31 Mar 2020 16:43:17 +0200 Subject: [PATCH] Update .zshrc --- .zshrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index cddc157..bbfbf4e 100644 --- a/.zshrc +++ b/.zshrc @@ -11,9 +11,12 @@ ZSH_THEME="xiong-chiamiov" plugins=(git zsh-autosuggestions z zsh-syntax-highlighting) source $ZSH/oh-my-zsh.sh -# User configuration +#User configuration +# #Aliases +# #Email aliases +# alias mail="mbsync -a ; neomutt" #Automatically download new emails and open neomutt alias email="mbsync -a ; neomutt" alias mutt="mbsync -a ; neomutt" @@ -27,7 +30,7 @@ export TERMINAL=termite #Keybindings for autosuggest bindkey '^ ' autosuggest-accept -bindkey '^\n' autosuggest-execute +bindkey '^\n' autosuggest-execute #Doesn't seem work, Ctrl+ #cdn + number will move to the xth parent directory (cdn 2 = cd ../..) function cdn() { for i in `seq $1`; do cd ..; done; }