let's play with knitfiles more

This commit is contained in:
Daylin Morgan 2023-05-16 15:52:02 -05:00
parent dc54e80f11
commit df058bbe25
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -1,3 +1,7 @@
-- Autocmds are automatically loaded on the VeryLazy event
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
-- Add any additional autocmds here
vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, {
pattern = { "Knitfile" },
command = "set syntax=lua",
})