dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit 97c64f8981f2fe9ec62268366463ecde8cd6533b (patch)
parent 9697ef4825d059dfbacc603d9bd74ba5dcaabc4b
Author: Alexander Karle <akarle@umass.edu>
Date:   Wed, 29 Nov 2017 23:07:22 -0500

minor changes for mouse support
less obtrusive syntastic checks

Diffstat:
Mtmux.conf | 3+++
Mvimrc | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/tmux.conf b/tmux.conf @@ -22,3 +22,6 @@ bind -n M-Left select-pane -L bind -n M-Right select-pane -R bind -n M-Up select-pane -U bind -n M-Down select-pane -D + +# set mouse on for scrolling +set -g mouse on diff --git a/vimrc b/vimrc @@ -103,7 +103,7 @@ set statusline+=%* let g:syntastic_always_populate_loc_list = 1 let g:syntastic_auto_loc_list = 1 -let g:syntastic_check_on_open = 1 +let g:syntastic_check_on_open = 0 let g:syntastic_check_on_wq = 0 let g:syntastic_python_checkers = ['flake8']