vim is too fancy. I want it to be simple, without any color, and all fonts should be normal white. How to do it?
欢迎选择我的课程,让我们一起见证您的进步~~
Under /etc/, there is a file named vimrc, in which you can set up and turn off syntax highlighting - -
Command line input:
cat << EOF >> ~/.vimrc :syntax off EOF
Use vi, clam
~/.vimrc
syntax off
If you just want to change the current window, directly execute the following command: :syntax off:colo evening
colo changed the theme to night, so it has a black background and white words
Under /etc/, there is a file named vimrc, in which you can set up and turn off syntax highlighting - -
Command line input:
Use vi, clam
~/.vimrc
If you just want to change the current window, directly execute the following command:
:syntax off
:colo evening
colo changed the theme to night, so it has a black background and white words