diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:40:16 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:40:16 +0000 |
| commit | b94eefa6b58f274bb61db4e792105c3959cf2022 (patch) | |
| tree | 3d2896fb46ebc769e4fea8cf4f02ce3104e1f974 /nvim/ftdetect | |
Diffstat (limited to 'nvim/ftdetect')
| -rw-r--r-- | nvim/ftdetect/astro.lua | 5 | ||||
| -rw-r--r-- | nvim/ftdetect/haxe.vim | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/nvim/ftdetect/astro.lua b/nvim/ftdetect/astro.lua new file mode 100644 index 0000000..af28385 --- /dev/null +++ b/nvim/ftdetect/astro.lua @@ -0,0 +1,5 @@ +vim.filetype.add({ + extension = { + astro = "astro" + } +}) diff --git a/nvim/ftdetect/haxe.vim b/nvim/ftdetect/haxe.vim new file mode 100644 index 0000000..a492c36 --- /dev/null +++ b/nvim/ftdetect/haxe.vim @@ -0,0 +1 @@ +autocmd BufNewFile,BufRead *.hx setf haxe |