🔥 rm old pychcker 🎨 add invisibles

This commit is contained in:
Daniel Thoren 2022-04-20 16:33:00 +02:00 committed by GitHub
parent b404e0f3ab
commit c101e90c35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,6 +27,12 @@ Plug 'rrethy/vim-illuminate' " highlight other uses of the current word under t
" Plug 'jupyter-vim/jupyter-vim' " one day we'll start using jupyter in vim
call plug#end()
" show invisibles
:set fileencoding=utf-8
:set list
" :set listchars=tab:→\ ,space:·,nbsp:␣,trail:•,eol:¶,precedes:«,extends:»
:set listchars=tab:Üí\ ,nbsp:ê£,trail:Ä¢,precedes:¬´,extendsª
" syntastic recommended settings
set statusline+=%#warningmsg#
@ -36,7 +42,6 @@ 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_wq = 0
" let g:syntastic_python_checker = 'flake8'
let g:syntastic_python_checkers = ['python', 'flake8']
let g:syntastic_python_python_exec = 'python3'