nichts/modules/editors/nvf/runtime/after/ftdetect/graphql.lua
2024-07-06 17:14:45 +02:00

8 lines
203 B
Lua

-- luacheck: ignore
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, {
pattern = '*.graphql,*.graphqls,*.gql',
callback = function()
vim.bo.filetype = 'graphql'
end,
once = false,
})