Skip to content

Instantly share code, notes, and snippets.

@KristobalJunta
Created June 21, 2019 15:01
Show Gist options
  • Save KristobalJunta/c340fd30327059a63942c79e014d2e04 to your computer and use it in GitHub Desktop.
Save KristobalJunta/c340fd30327059a63942c79e014d2e04 to your computer and use it in GitHub Desktop.
Install Nginx conf syntax for vim
#!/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