diff --git a/.oh-my-zsh/custom/aliases.zsh b/.oh-my-zsh/custom/aliases.zsh index 2881a2c..0462d42 100644 --- a/.oh-my-zsh/custom/aliases.zsh +++ b/.oh-my-zsh/custom/aliases.zsh @@ -7,6 +7,7 @@ alias gcd='git checkout development' alias here=gnome-terminal alias sgrep='grep -R -n -H -C 5 --exclude-dir={.git,.svn,CVS,.venv} ' alias save='gca && gp' +alias beep='paplay /usr/share/sounds/gnome/default/alerts/bark.ogg' function _commands() { awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' diff --git a/.vimrc b/.vimrc index be7d545..08995ea 100644 --- a/.vimrc +++ b/.vimrc @@ -30,6 +30,7 @@ set number set incsearch set hlsearch nnoremap :nohlsearch +set clipboard=unnamedplus au BufNewFile,BufRead *.py \ set tabstop=4 |