diff --git a/vimrc b/vimrc index b18c234..28e6cb6 100644 --- a/vimrc +++ b/vimrc @@ -41,9 +41,9 @@ Plug 'searchfold.vim' Plug 'godlygeek/tabular' Plug 'tommcdo/vim-lion' Plug 'kshenoy/vim-signature' -Plug 'SirVer/ultisnips' +"Plug 'SirVer/ultisnips' Plug 'honza/vim-snippets' -Plug 'Valloric/YouCompleteMe', { 'do': './install.sh' } +"Plug 'Valloric/YouCompleteMe', { 'do': './install.sh' } Plug 'eagletmt/ghc-mod' "Plug 'eagletmt/neco-ghc' "Plug 'lukerandall/haskellmode-vim' @@ -64,6 +64,7 @@ Plug 'AndrewRadev/splitjoin.vim' Plug 'kien/rainbow_parentheses.vim' Plug 'nathanaelkane/vim-indent-guides' Plug 'junegunn/goyo.vim' +Plug 'haya14busa/incsearch.vim' call plug#end() "let $GIT_SSL_NO_VERIFY = 'true' @@ -263,3 +264,8 @@ autocmd FileType javascript,css inoremap ,; :call cosco#commaOrSem " Calendar let g:calendar_google_calendar = 1 + +" incsearch +map / (incsearch-forward) +map ? (incsearch-backward) +map g/ (incsearch-stay) diff --git a/zshrc b/zshrc index 2fd2922..318f2aa 100644 --- a/zshrc +++ b/zshrc @@ -55,3 +55,6 @@ eval `keychain --eval id_rsa` HISTSIZE=1000 SAVEHIST=1000 HISTFILE=~/.history + +### Added by the Heroku Toolbelt +export PATH="/usr/local/heroku/bin:$PATH"