aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-11-09 22:20:13 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-11-09 22:20:13 +0100
commit88fae5dda7d15936a5372cc738f5b70fb2a96550 (patch)
tree6625689dda4aecf0b63b9fe1993d94e0aed2f7af
parentaa3cdab28d515f5277cb0f7f204281f6f071bb67 (diff)
Add neovim filetype support
-rw-r--r--plugin/init.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/init.lua b/plugin/init.lua
new file mode 100644
index 0000000..b3f2a75
--- /dev/null
+++ b/plugin/init.lua
@@ -0,0 +1,3 @@
+vim.filetype.add({
+ pattern = { ['*.gsp'] = 'gsp' }
+})