I noticed that with different colorschemes VIM is underlining/highlighting some words. Why is this and how to turn it off ?

with another colorscheme

I’m using spf13-vim configuration and connecting remotely with Putty.
VIM is correctly assuming this file to be a python file (:set filetype returns “python”)
It seems like your Vim is doing spell-checking for you. You can turn this off by adding
in your
.vimrcfile. To turn it back on in a file, you can do:for spell-checking with American English.
:setlocalchanges settings for current buffer, while:setmakes the changes for all currently open buffers. You can read more about how spell-checking with Vim works here.It may be useful for you to automatically enable spell checking for certain files. For example, to enable spell checking in
.texfiles, you can add the following to your.vimrc:Note that
autocmd!clears the previously definedaucommands and is needed only once.