Open
Description
Hello, this is probably pretty dumb, but I can't seem to find an answer for this
I'm using Vim v8.0 on a WSL and I can't get any highlights from vim-python (unused imports, unused arguments, misspelled names, etc.)
Here is the vimrc and i'm using vim-plug
call plug#begin('~/.vim/plugged')
Plug 'altercation/vim-colors-solarized'
Plug 'jnurmine/Zenburn'
Plug 'vim-python/python-syntax'
call plug#end()
if has('gui_running')
set background=dark
colorscheme solarized
else
colors zenburn
endif
set number
filetype plugin indent on
syntax on
I executed :PlugInstall as well.
And a look at my ~/.vim/plugged
>> ls
python-syntax Zenburn vim-colors-solarized
What could I be doing wrong/missing?
Thanks