my neovim config, who would've thought

refactor(filetype): clean up

olexsmir.xyz e096e76b a43819c6

verified
Changed files
-8
-8
filetype.lua
··· 6 6 extension = { 7 7 lock = "yaml", 8 8 gotmpl = "gotmpl", 9 - org_archive = "org", 10 9 vil = "json", 11 10 }, 12 11 filename = { 13 12 [".eslintrc"] = "jsonc", 14 13 [".prettierrc"] = "jsonc", 15 - [".babelrc"] = "jsonc", 16 - [".flake8"] = "dosini", 17 - [".editorconfig"] = "dosini", 18 14 [".stignore"] = "gitignore", 19 - ["todo.txt"] = "todotxt", 20 - ["done.txt"] = "todotxt", 21 - ["obtf.txt"] = "markdown", 22 15 }, 23 16 pattern = { 24 17 ["%.env%.[%w_.-]+"] = "sh", 25 18 ["*.Dockerfile.*"] = "dockerfile", 26 - ["*/templates/**/*.html"] = "htmldjango", 27 19 [".*/hypr/.+%.conf"] = "hyprlang", 28 20 [".*/kitty/.+%.conf"] = "kitty", 29 21 },