Indent and highlight settings under vim, and vim indent highlight settings
1. Configuration File LocationUnder the/etc/directory, there is a file named vimrc, which is a public vim configuration file in the system and is valid for all users. In each user's home directory, you can create a private configuration file named ". vimrc ". For example, A. vimrc file already exists in the/root directory. If you do not know the location of the configuration file and script, run the following command in vim: scriptnames: path/etc/vimrc/usr/share/vim/vim72/syntax. vim/usr/share/vim/vim72/syntax/synload. vim/usr/share/vim/vim72/syntax/syncolor. vim/usr/share/vim/vim72/filetype. vim/usr/share/vim/vim72/ftplugin. vim/home/kdj /. vimrc... if you do not know the search location of the vim configuration file, enter: version to display the system vimrc file: "/etc/vimrc" User vimrc file: "$ HOME /. vimrc "User exrc file:" $ HOME /. exrc "$ VIM default value:"/usr/share/vim "I just copied the/etc/vimrc file to the user to be set, and then run the mv command, name the copied vimrc. vimrc and then add the following settings2. Set syntax highlighting1) Open vimrc and add the following statement to highlight the syntax: syntax on2) if the syntax is still not highlighted, add the following statement to the profile file in the/etc directory: export TERM = xterm-color
3. set Windows C/C ++ auto indent (Add the following set statement to vimrc)1) set (soft) tab width to 4: set tabstop = 4 set softtabstop = 42) set the number of spaces for indentation to 4 set shiftwidth = 43) set automatic indent: that is, the indent value of each line is equal to that of the previous line. Use noautoindent to cancel the setting: set autoindent4) to set the automatic indent mode in C/C ++ language: set cindent
5) set the specific indentation mode of C/C ++ language (take windows style as an example): set cinoptions = {0, 1 s, t0, N-2, p2s, (03 s, =. 5 s,> 1 s, = 1 s,: 1s6) to display the line number of the text on the left, use the following statement: set nu set roler to set the cursor to display 7) at the end, add the following statement if & term = "xterm" set t_Co = 8 set t_Sb = ^ [[4% dmset t_Sf = ^ [3% dmendif