73c730c032
- Markdown fixes
- Fix spellcheck
- Clean up
- Supress etoc warning
- Remove folder before clone if it's exist
- Change liniting.yml to use develop
- Trailing white space fix
Change-Id: Ib3bb2cdd0abebeb21071b5d2e2d3b57fe41666e0
[ROCm/hip commit: bd624d0938]
17 lines
440 B
Markdown
17 lines
440 B
Markdown
### How to install?
|
|
|
|
1. Add the <code>hip.vim</code> to <code>~/.vim/syntax/</code> directory
|
|
2. Add the following text to the end of <code>~/.vimrc</code>
|
|
|
|
```shell
|
|
augroup filetypedetect
|
|
au BufNewFile,BufRead *.cpp set filetype=cpp syntax=hip
|
|
augroup END
|
|
augroup filetypedetect
|
|
au BufNewFile,BufRead *.c set filetype=c syntax=hip
|
|
augroup END
|
|
augroup filetypedetect
|
|
au BufNewFile,BufRead *.cu set filetype=cu syntax=hip
|
|
augroup END
|
|
```
|