From 2877396014a43b83748ac5d6c96bad722721d2ad Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Tue, 22 Mar 2016 17:40:29 -0400 Subject: [PATCH 1/2] update search settings in vim --- .vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vimrc b/.vimrc index 0c097f3..a596223 100644 --- a/.vimrc +++ b/.vimrc @@ -19,7 +19,14 @@ set smartindent set showcmd set laststatus=2 set noshowmode +set title + +" Search betterer set incsearch +set hlsearch +set ignorecase +set smartcase + colorscheme distinguished set background=dark From 6ff3a672dd895bdaedea0c64033e849dc0525b2c Mon Sep 17 00:00:00 2001 From: Aaron Gutierrez Date: Tue, 22 Mar 2016 17:49:19 -0400 Subject: [PATCH 2/2] source .zhsrc_local --- .zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.zshrc b/.zshrc index d9817a2..9ca05d2 100644 --- a/.zshrc +++ b/.zshrc @@ -2,6 +2,12 @@ autoload -U colors && colors source ~/.git-prompt.sh +if [[ -f .zshrc_local ]] +then + source .zshrc_local +else +fi + export PATH=$PATH:/opt/cc0/bin:~/bin:/opt/android-studio/bin:/opt/smlnj/bin export EDITOR=vim export CLICOLOR=1