A Vim syntax-highlighting file for YARA rules. Covers YARA versions up to v4.2.
The installation has two steps.
(1) If you use pathogen, simply go
into the bundle
directory and clone the repository in there:
cd ~/.vim/bundle
git clone https://github.com/s3rvac/vim-syntax-yara.git
You can also install the plugin manually by copying the
syntax/yara.vim
file to your ~/.vim/syntax
directory. If that directory does not exist,
create it.
(2) Put the following autocommand to your .vimrc
:
" Consider all .yar/.yara files to be YARA files.
autocmd BufNewFile,BufRead *.yar,*.yara setlocal filetype=yara
Copyright (c) 2017 Petr Zemek (s3rvac@gmail.com) and contributors.
Distributed under the MIT license. See the
LICENSE
file for more details.