Merge branch 'master' of gitea.tforgione.fr:tforgione/dotfiles
This commit is contained in:
commit
9d3728f15a
8
init.vim
8
init.vim
|
@ -144,3 +144,11 @@ autocmd InsertLeave * if pumvisible() == 0|pclose|endif
|
||||||
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
|
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
|
||||||
|
" }}}
|
||||||
|
|
Loading…
Reference in New Issue