Vim configuration highlight and automatic indent

Source: Internet
Author: User


Vim configuration highlight and automatic indent 1. The configuration file is located under the/etc/directory, and there is a file named vimrc, which is a public vim configuration file in the system, 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, the following path is displayed:/etc/vimrc www.2cto.com/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 Settings 2. Set the syntax to highlight www.2cto.com 1) 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-style 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 settings: set autoindent4) set the automatic indent mode using C/C ++ language: set cindent
5) set the specific indentation mode of C/C ++ language (take my 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 www.2cto.com 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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.