nvim.d/nvim/ftdetect/jsonnet.lua
Dan Anglin 0f18fb7cc5
fix: rename the config directory to nvim
Renamed the configuration directory to nvim so that, when extracted, the
correct directory is created.

Fixes linux-home/nvim.d#2
2023-01-16 19:13:25 +00:00

4 lines
134 B
Lua

vim.api.nvim_create_autocmd(
{ "BufNewFile", "BufRead"},
{ pattern = {"*.jsonnet", "*.libsonnet"}, command = "set ft=jsonnet" }
)