Merge branch 'master' of git.epichack.com:barak/dotfiles
This commit is contained in:
commit
d22b5d1aeb
3 changed files with 10 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
5
.vimrc
5
.vimrc
|
|
@ -171,6 +171,11 @@ let g:UseGooglePythonSettings = 0
|
|||
" * Eclim
|
||||
let g:EclimCompletionMethod = 'omnifunc'
|
||||
|
||||
" * Syntastic
|
||||
let g:syntastic_python_flake8_args='--ignore=E111'
|
||||
let g:syntastic_go_checkers=['go', 'govet', 'golintc']
|
||||
" 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"
|
||||
|
|
|
|||
3
bin/golintc
Executable file
3
bin/golintc
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
golint "$@" | grep -v "should have comment or be unexported"
|
||||
Loading…
Add table
Add a link
Reference in a new issue