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

王林
Release: 2023-05-13 13:28:06
forward
1354 people have browsed it

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
Copy after login

(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
Copy after login

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!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!