forked from pub-solar/os
13 lines
307 B
Plaintext
13 lines
307 B
Plaintext
hook -group lint global WinSetOption filetype=nix %{
|
|
# remove '' for nix, annoying for string literals
|
|
set buffer auto_pairs ( ) { } [ ] '"' '"' ` `
|
|
|
|
set buffer lintcmd '/etc/xdg/kak/autoload/lint/nix.sh'
|
|
set buffer formatcmd "nixpkgs-fmt"
|
|
|
|
hook buffer BufWritePre .* %{
|
|
format
|
|
lint
|
|
}
|
|
}
|