diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2021-09-04 12:04:53 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2021-09-04 12:04:53 +0200 |
commit | 65b7f91e51d90e93c3d7c6704c0a8265467a8ea7 (patch) | |
tree | 88301071c7f1840b502f33cbd3b0f7c5e81b0c66 /Common/zshrc | |
parent | a77563ee1044ffa03f7c49e457a5f7c9f943188f (diff) | |
parent | e6df7072ab32493a561fc678eacc119b57981827 (diff) | |
download | dotfiles-65b7f91e51d90e93c3d7c6704c0a8265467a8ea7.tar.gz dotfiles-65b7f91e51d90e93c3d7c6704c0a8265467a8ea7.zip |
Merge branch 'master' of https://github.com/JakobS1n/dotfiles
Diffstat (limited to 'Common/zshrc')
-rw-r--r-- | Common/zshrc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Common/zshrc b/Common/zshrc index 44fbfe4..356f69c 100644 --- a/Common/zshrc +++ b/Common/zshrc @@ -41,12 +41,17 @@ source $ZSH/oh-my-zsh.sh export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 +# Set vim as default editor +# export EDITOR=$(which vim) + # Add aliases alias lsp="ps -ax | grep" alias lsa="ls -la" alias lsg="ls | grep" alias lsag="ls -la | grep" alias ls="tput setaf 3 && echo \"'lsa' for 'ls -la', \n'lsg' for 'ls | grep',\n'lsag' for 'ls -la | grep',\n'lsp' for 'ps -ax |grep'\" && tput sgr0 && ls" +alias notes="vim ~/Documents/notes.txt" +alias todo="vim ~/Documents/todo.txt" # man pages in colors man() { |