Home  >  Article  >  Operation and Maintenance  >  How to use the nginx.vim tool for syntax highlighting and formatting to configure the nginx.conf file

How to use the nginx.vim tool for syntax highlighting and formatting to configure the nginx.conf file

王林
王林forward
2023-05-13 13:28:061357browse

The tengine I use, the installation directory is /usr/local/tengine.

1. Download nginx.vim

2. Upload nginx.vim to ~/.vim/syntax/ and save it in ~/.vim/ Add the following content to the filetype.vim file:

au bufread,bufnewfile /etc/nginx/*,/usr/local/nginx/conf/* if &ft == '' | setfiletype nginx | endif

(Flexibly configured according to the nginx installation directory)

If there are no directories and files, create them. Mine is the following configuration:

au bufread,bufnewfile /etc/nginx/*,/usr/local/nginx/conf/,/usr/local/tengine/conf/* if &ft == '' | setfiletype nginx | endif

3. Then open nginx.conf, and it turns out there is color, haha.

At first it was like this:

How to use the nginx.vim tool for syntax highlighting and formatting to configure the nginx.conf file

Now it is like this:

How to use the nginx.vim tool for syntax highlighting and formatting to configure the nginx.conf file

The above is the detailed content of How to use the nginx.vim tool for syntax highlighting and formatting to configure the nginx.conf file. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete