Skip to content

Commit

Permalink
Add ale linter
Browse files Browse the repository at this point in the history
  • Loading branch information
athal7 committed Jun 6, 2017
1 parent 083dd98 commit b9c5424
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .vimrc
Expand Up @@ -154,6 +154,10 @@ set encoding=utf-8 " utf encoding
Plug 'tpope/vim-haml'
Plug 'mitsuhiko/vim-python-combined'

" linting
Plug 'w0rp/ale'
let g:ale_linters = {'python': ['flake8']}

" xmpfilter
Plug 't9md/vim-ruby-xmpfilter'
nmap <Leader>x <Plug>(xmpfilter-mark) <Plug>(xmpfilter-run)
Expand Down Expand Up @@ -203,7 +207,7 @@ set encoding=utf-8 " utf encoding
Plug 'vim-airline/vim-airline-themes'
let g:airline_theme='papercolor'
let g:airline_powerline_fonts = 1
let g:airline_extensions = ['ctrlp', 'tmuxline', 'tabline']
let g:airline_extensions = ['ctrlp', 'tmuxline', 'tabline', 'ale']

call plug#end()

Expand Down

0 comments on commit b9c5424

Please sign in to comment.