Awesome
vim-pinecone
Syntax highlighting in VIM for the pinecone programming language.
Installation
Linux
- Clone this repo to your computer somewhere
- Navigate into the
vim-pinecone
directory cp pn.vim ~/.vim/syntax/pn.vim
You 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!