nichts/modules/programs/editors/nvf/runtime/after/ftdetect/graphql.lua

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,
})