aboutsummaryrefslogtreecommitdiff
path: root/configs/nvim/lua/crupest/constants.lua
blob: 89ae9683b07611b9ffcc70df943e240b0aa565dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
local config_patterns = {
    cspell = {
        ".cspell.json",
        "cspell.json",
        ".cSpell.json",
        "cSpell.json",
        "cspell.config.js",
        "cspell.config.cjs",
        "cspell.config.json",
        "cspell.config.yaml",
        "cspell.config.yml",
        "cspell.yaml",
        "cspell.yml",
    },
    nodejs = {
        "package.json"
    },
    deno = {
        "deno.json", "deno.jsonc"
    }
}

local filetype_collections = {
    js_ts = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact' },
    html_css = { 'html', 'css' },
    frontend = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact', 'html', 'css' },
}

return {
    config_patterns = config_patterns,
    filetype_collections = filetype_collections,
}