From cdffbd834b615f5cc55ab3d05fe1b1ee501f8e2b Mon Sep 17 00:00:00 2001 From: Fedor Lyanguzov Date: Thu, 5 Jul 2018 11:31:15 +0300 Subject: [PATCH] =?UTF-8?q?2018.07.05=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D0=B0=20beep?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .oh-my-zsh/custom/aliases.zsh | 1 + .vimrc | 1 + 2 files changed, 2 insertions(+) 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 |