diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2023-11-11 12:51:28 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2023-11-11 12:51:28 +0100 |
commit | 60ea569c980eac5787c05e94bc474c852a4f11f9 (patch) | |
tree | c8bf05e252c6672063ebadd71c4885ff3119a794 /Common/zshrc | |
parent | 643fdee5981c72dd5e972d3158806e90ae4b420f (diff) | |
download | dotfiles-60ea569c980eac5787c05e94bc474c852a4f11f9.tar.gz dotfiles-60ea569c980eac5787c05e94bc474c852a4f11f9.zip |
Do some design changes
Diffstat (limited to 'Common/zshrc')
-rw-r--r-- | Common/zshrc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Common/zshrc b/Common/zshrc index dca8124..ee0ff91 100644 --- a/Common/zshrc +++ b/Common/zshrc @@ -7,6 +7,7 @@ fi # If you come from bash you might have to change your $PATH. export PATH=$HOME/bin:/usr/local/bin:$HOME/.local/bin:$PATH +export KEYTIMEOUT=1 # Check if env setup file exists if [ ! -f ~/.zsh_env_setup ]; then @@ -69,6 +70,11 @@ alias ls="tput setaf 3 && echo \"'lsa' for 'ls -la', \n'lsg' for 'ls | grep',\n' alias notes="vim ~/Documents/notes.txt" alias todo="vim ~/Documents/todo.txt" +alias _vi=$(which vi) +alias _vim=$(which vim) +alias vi=nvim +alias vim=nvim + # man pages in colors man() { LESS_TERMCAP_md=$'\e[01;31m' \ |