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:
Now it is like this:
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!