Merge branch 'master' of gitea.tforgione.fr:tforgione/dotfiles

This commit is contained in:
Thomas Forgione 2019-05-28 07:32:43 +02:00
commit 9d3728f15a
No known key found for this signature in database
GPG Key ID: BFD17A2D71B3B5E7
1 changed files with 8 additions and 0 deletions

View File

@ -144,3 +144,11 @@ autocmd InsertLeave * if pumvisible() == 0|pclose|endif
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
" }}}
" CUSTOM THINGS DEPENDING ON ENV ####################################{{{
let nvim_disable_python_linter=$NVIM_DISABLE_PYTHON_LINTER
if nvim_disable_python_linter == '1'
let g:ale_linters = {
\ 'python': [],
\}
endif
" }}}