this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nvim: set avsc files to json ft

+6
+6
nvim/lua/config/base.lua
··· 28 28 vim.opt_local.linebreak = true 29 29 end, 30 30 }) 31 + 32 + -- Set .avsc files to use json filetype 33 + vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, { 34 + pattern = "*.avsc", 35 + command = "set filetype=json", 36 + })