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

9 lines
203 B
Lua
Raw Normal View History

2024-07-06 17:14:45 +02:00
-- luacheck: ignore
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, {
pattern = '*.graphql,*.graphqls,*.gql',
callback = function()
vim.bo.filetype = 'graphql'
end,
once = false,
})