From a839566733c9411c4128bcfba0648d31b1443230 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Wed, 31 Oct 2018 16:59:02 +0100 Subject: [PATCH] Disable CTRL-s terminal stop, add grep color --- .config/zsh/.zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 1bec3aa..933db23 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -24,6 +24,10 @@ export XAUTHORITY="$XDG_DATA_HOME/xorg/Xauthority" # General export LESSHISTFILE=- +## Terminal + +stty -ixon + ## ZSH autoload -Uz promptinit colors vcs_info compinit history-search-end @@ -95,6 +99,8 @@ SAVEHIST=10000 alias q='exit' alias la='ls -laGh --color --group-directories-first' alias ls='ls --color --group-directories-first' +alias grep='grep --color' +alias md='mkdir -p' alias rm='rm -i' alias vim='vim --servername VIM' alias svim='sudoedit'