Detect '.lintstagedrc' filetype (json)

This commit is contained in:
2025-05-01 17:01:01 +02:00
parent f6e525cf53
commit 5e5d88a92a
2 changed files with 6 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
require("vim") require("vim")
require("ftdetect")
require("keymaps") require("keymaps")
-- vim.opt.background = "dark" -- vim.opt.background = "dark"

View File

@@ -0,0 +1,5 @@
vim.filetype.add({
filename = {
[".lintstagedrc"] = "json",
},
})