summaryrefslogtreecommitdiff
path: root/.config/nvim/after/ftdetect/oryx.lua
blob: c3647c5aefc9754f76fa587f9f54551a94640601 (plain) (blame)
1
2
3
4
5
6
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
	pattern = '*.yx',
	callback = function()
		vim.bo.filetype = 'oryx'
	end,
})