diff options
| author | Yaroslav <contact@yaroslavps.com> | 2020-02-25 14:47:03 +0300 | 
|---|---|---|
| committer | Yaroslav <contact@yaroslavps.com> | 2020-02-25 14:47:03 +0300 | 
| commit | d16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64 (patch) | |
| tree | 6575864b75dc0c9de61b5d523e77dbcff785c998 /dotfiles/.vim/autoload/neomake/makers/ft/nix.vim | |
| parent | 69d47128244a06ee28e4b43191ef9216b04bce13 (diff) | |
| download | vimrice-d16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64.tar.gz vimrice-d16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64.zip | |
reorganized repo to be easier to use with GNU stow; added script to stow
Diffstat (limited to 'dotfiles/.vim/autoload/neomake/makers/ft/nix.vim')
| -rw-r--r-- | dotfiles/.vim/autoload/neomake/makers/ft/nix.vim | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/dotfiles/.vim/autoload/neomake/makers/ft/nix.vim b/dotfiles/.vim/autoload/neomake/makers/ft/nix.vim new file mode 100644 index 0000000..f239789 --- /dev/null +++ b/dotfiles/.vim/autoload/neomake/makers/ft/nix.vim @@ -0,0 +1,14 @@ +" vim: ts=4 sw=4 et +" +function! neomake#makers#ft#nix#EnabledMakers() abort +    return ['nix_instantiate'] +endfunction + +function! neomake#makers#ft#nix#nix_instantiate() abort +    return { +        \ 'exe': 'nix-instantiate', +        \ 'args': ['--parse-only'], +        \ 'errorformat': 'error: %m at %f:%l:%c' +        \ } +endfunction + | 
