This commit is contained in:
Barak Michener 2014-07-24 17:34:44 -04:00
parent 6038141149
commit 41f4efe78c
2 changed files with 6 additions and 2 deletions

View file

@ -5,8 +5,8 @@ bind-key C-a select-pane -t :.+
bind-key a send-prefix
bind-key j select-pane -D
bind-key k select-pane -U
#bind-key h select-pane -L
#bind-key l select-pane -R
bind-key h select-pane -L
bind-key l select-pane -R
bind-key C-n next-window
bind-key C-p previous-window
set -g set-titles off

4
.vimrc
View file

@ -128,6 +128,10 @@ let g:UseGooglePythonSettings = 0
" * Eclim
let g:EclimCompletionMethod = 'omnifunc'
" * Syntastic
let g:syntastic_python_flake8_args='--ignore=E111'
" E111 = Spaces should be multiples of 4. I use 2.
" * Configure browser for haskell_doc.vim
let g:haddock_browser = "open"
let g:haddock_browser_callformat = "%s %s"