1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-19 16:57:22 +03:00

Set filetype to Zig for zon files.

This commit is contained in:
Adrià Arrufat 2023-07-25 15:30:52 +09:00
parent e3122ab2c1
commit eabc7cd2a8

View File

@ -6,7 +6,7 @@
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*[.]zig %{
hook global BufCreate .*[.](zig|zon) %{
set-option buffer filetype zig
}