diff options
| author | Sam Nystrom <sam@samnystrom.dev> | 2026-01-15 22:35:33 -0500 |
|---|---|---|
| committer | Sam Nystrom <sam@samnystrom.dev> | 2026-01-15 22:35:33 -0500 |
| commit | 5d0d114e9e3a92fb1892279c6c93ca24b3f297e5 (patch) | |
| tree | fb5b34bbefb6f5ef6b6312ed055af76edb1af2d5 /.config/vis/visrc.lua | |
| parent | c40794b2040330ec2625bedf7df961115680c08b (diff) | |
add ron and yuck extensions to vis
Diffstat (limited to '.config/vis/visrc.lua')
| -rw-r--r-- | .config/vis/visrc.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.config/vis/visrc.lua b/.config/vis/visrc.lua index 982056e..f5c1e1b 100644 --- a/.config/vis/visrc.lua +++ b/.config/vis/visrc.lua @@ -6,7 +6,7 @@ require('plugins/vis-cursors') require('plugins/vis-editorconfig') require('plugins/vis-quickfix') -for _, ext in ipairs({ "%.jsx$", "%.ts", "%.tsx$" }) do +for _, ext in ipairs({ "%.jsx$", "%.ts", "%.tsx$", "%.qml$" }) do table.insert(vis.ftdetect.filetypes.javascript.ext, ext) end @@ -14,6 +14,10 @@ for _, ext in ipairs({ "^Containerfile$", "%.Containerfile$" }) do table.insert(vis.ftdetect.filetypes.dockerfile.ext, ext) end +table.insert(vis.ftdetect.filetypes.clojure.ext, "%.yuck$") + +table.insert(vis.ftdetect.filetypes.rust.ext, "%.ron$") + vis.ftdetect.filetypes.hare = { ext = { "%.ha$" }, } |
