Syntax highlighting in VIM for the pinecone programming language.

- Clone this repo to your computer somewhere
- Navigate into the
vim-pineconedirectory cp pn.vim ~/.vim/syntax/pn.vimYou may need to create the~/.vim/syntax- Add the following to your
~/.vim/filetype.vim:
if exists("did_load_filetypes")
finish
endif
augroup filetypedetect
au! BufNewFile,BufRead *.vim setf pn
augroup END(if you already have a structure like that, just add the au! line between augroup filetypedetect and augroup END)
- Open up a pinecone file in VIM
- You're done!