refactor(nvim): remove psql filetype definition

This commit is contained in:
Price Hiller 2023-12-19 00:20:11 -06:00
parent 3f314b1792
commit 54b9973503
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -11,14 +11,12 @@ M.setup = function()
[".*/Azure%-Pipelines/.*%.yaml"] = "azure-pipelines",
[".*/waybar/config"] = "jsonc",
[".*/etc/systemd/.*"] = "systemd",
[".*%.psql"] = "sql"
},
})
vim.treesitter.language.register("yaml", "azure-pipelines")
vim.treesitter.language.register("gitignore", "dockerignore")
vim.treesitter.language.register("html", "xml")
vim.treesitter.language.register("sql", "psql")
end
return M