From 2948f0b423d76916179a4dcda296daaf156979b1 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 15 Dec 2025 20:40:13 +0100 Subject: [PATCH] more filetypes --- lua/my_autocommands.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lua/my_autocommands.lua b/lua/my_autocommands.lua index 01d29e8..d83b92b 100644 --- a/lua/my_autocommands.lua +++ b/lua/my_autocommands.lua @@ -9,6 +9,9 @@ vim.filetype.add({ simcfg = 'xml', simcon = 'xml', simudex = 'xml', + rasi = 'rasi', + rofi = 'rasi', + wofi = 'rasi', }, filename = { ['JenkinsFile'] = 'groovy', @@ -18,6 +21,11 @@ vim.filetype.add({ ['.clangd'] = 'yaml', ['.clang-tidy'] = 'yaml', ['.yamlfmt'] = 'yaml', + ['.*/waybar/config'] = 'jsonc', + ['.*/mako/config'] = 'dosini', + ['.*/kitty/.+%.conf'] = 'kitty', + ['.*/hypr/.+%.conf'] = 'hyprlang', + ['%.env%.[%w_.-]+'] = 'sh', }, })