summaryrefslogtreecommitdiff
path: root/users/seth/programs/neovim/lua/lua/getchoo/ftdetect.lua
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/programs/neovim/lua/lua/getchoo/ftdetect.lua')
-rw-r--r--users/seth/programs/neovim/lua/lua/getchoo/ftdetect.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/users/seth/programs/neovim/lua/lua/getchoo/ftdetect.lua b/users/seth/programs/neovim/lua/lua/getchoo/ftdetect.lua
new file mode 100644
index 0000000..5dd569d
--- /dev/null
+++ b/users/seth/programs/neovim/lua/lua/getchoo/ftdetect.lua
@@ -0,0 +1,10 @@
+-- load custom file types
+
+local filetypes = {
+ filename = {
+ PKGBUILD = "text",
+ [".makepkg.conf"] = "text",
+ },
+}
+
+vim.filetype.add(filetypes)