https://github.com/lun-4/zig-kak
kakoune plugin for zig support (wip)
https://github.com/lun-4/zig-kak
kakoune zig
Last synced: about 2 months ago
JSON representation
kakoune plugin for zig support (wip)
- Host: GitHub
- URL: https://github.com/lun-4/zig-kak
- Owner: lun-4
- Archived: true
- Created: 2020-02-16T15:49:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T19:35:54.000Z (almost 5 years ago)
- Last Synced: 2025-03-07T18:14:22.412Z (about 2 months ago)
- Topics: kakoune, zig
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# note
kakoune master branch has builtin zig highlighting, afaik it isn't in a release
yet but: https://github.com/mawww/kakoune/pull/3422thank you so much, ifreund
## (what is) zig-kak
wip plugin providing zig support in kakoune
this only provides syntax highlighting.
## using zig fmt in kakoune
requires this edit to kakrc
```
hook global WinSetOption filetype=zig %{
set-option window formatcmd 'zig fmt --color off --stdin'
hook buffer BufWritePre .* %{format}
}
```