Created
May 8, 2018 20:57
-
-
Save richardsonlima/fd42bf8f34ca4444cc828a34c8093f4c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 |
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
@thepenguinthatwants
this worked for me: