Skip to content

Instantly share code, notes, and snippets.

@ralavay
Last active December 13, 2023 15:44
Show Gist options
  • Star 93 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save ralavay/c4c7750795ccfd72c2db to your computer and use it in GitHub Desktop.
Save ralavay/c4c7750795ccfd72c2db to your computer and use it in GitHub Desktop.
Enable syntax highlight for Nginx conf file in Vim
#!/bin/bash
#
# Highligh Nginx config file in Vim
# Download syntax highlight
mkdir -p ~/.vim/syntax/
wget http://www.vim.org/scripts/download_script.php?src_id=19394 -O ~/.vim/syntax/nginx.vim
# Set location of Nginx config file
cat > ~/.vim/filetype.vim <<EOF
au BufRead,BufNewFile /etc/nginx/*,/etc/nginx/conf.d/*,/usr/local/nginx/conf/* if &ft == '' | setfiletype nginx | endif
EOF
@saltfishh
Copy link

it's useful,thanks for that

@uvwild
Copy link

uvwild commented Feb 8, 2022

not sure why its missing, but the standard nginx.conf is not in the filetypes list.
Why would i not use the coloring on any file called nginx.conf?
so i needed
au BufRead,BufNewFile nginx.conf,/etc/nginx/,/etc/nginx/conf.d/,/usr/local/nginx/conf/* if &ft == '' | setfiletype nginx | endif

We use a lot of dockerized / containerized nginx's where the config is never in the standard locations

@jwwb681232
Copy link

👍

@AysadKozanoglu
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment