I am using VIM theme molokai, if that makes any difference.
I have been learning FORTRAN lately and when I write a FORTRAN program using VIM, I have weird coloring depen
Vim was using fixed-format/punchcard when I created a new .f90 file. In order to differentiate it, I found this. I copied it to my ~/.vim/syntax/ directory and added the following lines to my .vimrc (also specified at following link)
nmap :set syntax=fortran:let b:fortran_fixed_source=!b:fortran_fixed_source:set syntax=text:set syntax=fortran
nmap :filetype detect
Allowing me to bind Shift-F to switch formats, and Ctrl-F to auto detect.