Created
May 8, 2018 20:57
-
-
Save richardsonlima/fd42bf8f34ca4444cc828a34c8093f4c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jenkinsfile VIM syntax highlighting | |
echo 'au BufNewFile,BufRead Jenkinsfile setf groovy' >> ~/.vimrc |
Awesome! I was almost getting a plugin for this. Thanks!
Thanks 👍
thanks dude!
au BufNewFile,BufRead Jenkinsfile setf groovy
Didnt seem to work when I added this to my init.vim
works - thank you!
So simple! 👍
great - thanks
Thank you!
❤️
🎸 Rock on!
Simple and clear, thanks
@thepenguinthatwants
this worked for me:
augroup set_jenkins_groovy
au!
au BufNewFile,BufRead *.jenkinsfile,*.Jenkinsfile,Jenkinsfile,jenkinsfile setf groovy
augroup END
Nice!! It's the same for Nvim (init.vim)
Thx so much--it work 👍
It's really works, thank you :)
@thepenguinthatwants this worked for me:
augroup set_jenkins_groovy au! au BufNewFile,BufRead *.jenkinsfile,*.Jenkinsfile,Jenkinsfile,jenkinsfile setf groovy augroup END
worked great, thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is very useful 👍
Thanks!