aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/nvim/filetype.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/nvim/filetype.lua')
-rw-r--r--dot_config/nvim/filetype.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/dot_config/nvim/filetype.lua b/dot_config/nvim/filetype.lua
new file mode 100644
index 0000000..51f8646
--- /dev/null
+++ b/dot_config/nvim/filetype.lua
@@ -0,0 +1,14 @@
+vim.filetype.add({
+ extension = {
+ eml = "mail",
+ inc = "cpp",
+ def = "cpp",
+ Jenkinsfile = "groovy",
+ },
+ filename = {
+ [".devcontainer.json"] = "jsonc",
+ },
+ pattern = {
+ [".*/.github/workflows/.*%.ya?ml"] = "yaml.ghaction",
+ },
+})