aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/filetype.lua
blob: 51f8646f34d03f6df34a178051d03a30e9ff28bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
vim.filetype.add({
  extension = {
    eml = "mail",
    inc = "cpp",
    def = "cpp",
    Jenkinsfile = "groovy",
  },
  filename = {
    [".devcontainer.json"] = "jsonc",
  },
  pattern = {
    [".*/.github/workflows/.*%.ya?ml"] = "yaml.ghaction",
  },
})