From c101e90c35d01057d9033ed6d6c3bbc146224fc1 Mon Sep 17 00:00:00 2001 From: Daniel Thoren Date: Wed, 20 Apr 2022 16:33:00 +0200 Subject: [PATCH] :fire: rm old pychcker :art: add invisibles --- init.vim | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/init.vim b/init.vim index cc4b72b..9f400ca 100644 --- a/init.vim +++ b/init.vim @@ -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'