diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-11-09 22:20:13 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-11-09 22:20:13 +0100 |
commit | 88fae5dda7d15936a5372cc738f5b70fb2a96550 (patch) | |
tree | 6625689dda4aecf0b63b9fe1993d94e0aed2f7af /plugin | |
parent | aa3cdab28d515f5277cb0f7f204281f6f071bb67 (diff) |
Add neovim filetype support
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/init.lua | 3 |
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' } +}) |