Skip to content

Instantly share code, notes, and snippets.

@okoeroo
Forked from 2called-chaos/install_nginx_vim.sh
Created September 2, 2017 16:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save okoeroo/d8e68b09c68c0adca4d560d5dd122de9 to your computer and use it in GitHub Desktop.
Save okoeroo/d8e68b09c68c0adca4d560d5dd122de9 to your computer and use it in GitHub Desktop.
enable nginx vim syntax highlighting (on Ubuntu/Debian)
#!/bin/sh
mkdir -p ~/.vim/syntax/
cd ~/.vim/syntax/
wget http://www.vim.org/scripts/download_script.php?src_id=19394
mv download_script.php\?src_id\=19394 nginx.vim
cat > ~/.vim/filetype.vim <<EOF
au BufRead,BufNewFile /etc/nginx/*,/usr/local/nginx/conf/* if &ft == '' | setfiletype nginx | endif
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment