From d832273f344eef13fc6e82c7a3e7f0b61988eb58 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Tue, 4 Jan 2022 19:08:09 +0100 Subject: fix(plugin): add filetypes.lua file for the package. Why in the world spec.vim was in ftdetect/ and not in ftplugin/. --- ftdetect/filetype.lua | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ftdetect/filetype.lua (limited to 'ftdetect/filetype.lua') diff --git a/ftdetect/filetype.lua b/ftdetect/filetype.lua new file mode 100644 index 0000000..3093c7a --- /dev/null +++ b/ftdetect/filetype.lua @@ -0,0 +1,5 @@ +vim.filetype.add({ + extension = { + changes = "changes", + }, +}) -- cgit