Home > Operation and Maintenance > Nginx > 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

王林
Release: 2023-05-13 13:28:06
forward
1436 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:
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
Latest Issues
Error restarting nginx
From 1970-01-01 08:00:00
0
0
0
server - Nginx configuration webapp problem
From 1970-01-01 08:00:00
0
0
0
Nginx default.conf problem
From 1970-01-01 08:00:00
0
0
0
centos7 - NGINX exception occurs
From 1970-01-01 08:00:00
0
0
0
nginx load balancing
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template