Compare commits

...

5 Commits

Author SHA1 Message Date
a1a0f4bfd3 Merge branch 'master' of https://git.yorune.pl/y0rune/myhome
Signed-off-by: Marcin Woźniak <marcin.wozniak@wundermanthompson.com>
2021-09-15 08:49:56 +02:00
Marcin Woźniak
c0569e111f Merge branch 'master' of https://git.yorune.pl/y0rune/myhome 2021-08-13 08:26:44 +02:00
Marcin Woźniak
4dd9287fe9 Merge branch 'master' of https://git.yorune.pl/y0rune/myhome 2021-08-08 15:27:13 +02:00
Marcin Woźniak
73629b2eef Merge branch 'master' of https://git.yorune.pl/y0rune/myhome 2021-07-19 07:59:51 +02:00
Marcin Woźniak
0464cc1daf Added multiple cursosrs 2021-07-19 07:57:39 +02:00

4
.zshrc
View File

@ -14,7 +14,7 @@ gbranch() {
[ -f /etc/gentoo-release ] && export ZSH="/usr/share/zsh/site-contrib/oh-my-zsh"
[ -f /etc/centos-release ] && export ZSH="$HOME/.oh-my-zsh"
[ -f /etc/debian_version ] && export ZSH="$HOME/.oh-my-zsh"
[ $(uname)=="Darwin" ] && export ZSH="$HOME/.oh-my-zsh"
[[ "$(uname)" == "Darwin" ]] && export ZSH="$HOME/.oh-my-zsh"
HISTFILE=$HOME/.history_zsh
HISTSIZE=10000
@ -64,7 +64,7 @@ alias emerge="sudo emerge"
alias channel-check='sudo iwlist wlan0 scan | egrep -i "essid|frequency"'
alias grep="grep --color=always"
alias egrep="egrep --color=always"
[ $(uname)=="Darwin" ] && alias ls='ls -h' || alias ls='ls -h --color=auto'
[[ "$(uname)" == "Darwin" ]] && alias ls="ls -h" || alias ls="ls -h --color=auto"
alias ll='ls -lha'
alias cp='cp -v'
alias mv='mv -v'