blob: b1067b664423450b211d2d83db0605182462d183 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
set-option global makecmd 'make -j8'
# TODO: For some reason <ret> doesnt jump to error
hook global BufSetOption filetype=(?:typescript|javascript|jsx|tsx) %{
set-option buffer makecmd "%val{config}/scripts/tsc-vimgrep.sh"
}
hook global BufSetOption filetype=haskell %{
set-option buffer makecmd "cabal build"
}
hook global BufSetOption filetype=rust %{
set-option buffer makecmd "cargo build"
}
|