Vim Syntax Highlighting does not work

后端 未结 9 758
别那么骄傲
别那么骄傲 2021-01-31 14:45

I\'ve installed a fresh Arch Linux system on my laptop and downloaded the vim package.

I haven\'t altered the .vimrc file, but the syntax highlighting doesn\'t seem to w

9条回答
  •  -上瘾入骨i
    2021-01-31 15:02

    in my case , I changed the term(terminal type) from vt100 to xterm. And it works.

    To change the terminal type:

    in bash:

    export TERM=xterm
    

    in bourne shell or ksh:

    TERM=xterm
    export TERM
    

    in csh or tcsh:

    setenv TERM xterm
    

提交回复
热议问题