diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-01-01 15:37:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 15:37:07 +0100 |
commit | f69658bc355e130fc2845a8e0edc8baa4f256329 (patch) | |
tree | 86f3a87ce3558b5f2b298b4142cf1f31b0b205c4 /runtime/ftplugin/lua.lua | |
parent | bcd111bd12b9d6db58a88fac728fc51af4d96c12 (diff) | |
download | rneovim-f69658bc355e130fc2845a8e0edc8baa4f256329.tar.gz rneovim-f69658bc355e130fc2845a8e0edc8baa4f256329.tar.bz2 rneovim-f69658bc355e130fc2845a8e0edc8baa4f256329.zip |
feat(treesitter): highlight Lua files by default (#26824)
Diffstat (limited to 'runtime/ftplugin/lua.lua')
-rw-r--r-- | runtime/ftplugin/lua.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/ftplugin/lua.lua b/runtime/ftplugin/lua.lua new file mode 100644 index 0000000000..98f218e36e --- /dev/null +++ b/runtime/ftplugin/lua.lua @@ -0,0 +1,2 @@ +-- use treesitter over syntax +vim.treesitter.start() |