mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
feat(filetype.lua): add support for tmux.conf files
This commit is contained in:
parent
19864bd995
commit
94d5358922
@ -1038,6 +1038,7 @@ local filename = {
|
||||
["tidy.conf"] = "tidy",
|
||||
tidyrc = "tidy",
|
||||
[".tidyrc"] = "tidy",
|
||||
[".tmux.conf"] = "tmux",
|
||||
["/.cargo/config"] = "toml",
|
||||
Pipfile = "toml",
|
||||
["Gopkg.lock"] = "toml",
|
||||
@ -1233,6 +1234,8 @@ local pattern = {
|
||||
[".*/%.config/systemd/user/.*%.d/.*%.conf"] = "systemd",
|
||||
[".*/etc/systemd/system/.*%.d/.*%.conf"] = "systemd",
|
||||
[".*%.t%.html"] = "tilde",
|
||||
["%.?tmux.*%.conf"] = "tmux",
|
||||
["%.?tmux.*%.conf.*"] = { "tmux", { priority = -1 } },
|
||||
[".*/%.cargo/config"] = "toml",
|
||||
[".*/%.cargo/credentials"] = "toml",
|
||||
[".*/etc/udev/udev%.conf"] = "udevconf",
|
||||
|
Loading…
Reference in New Issue
Block a user