mirror of
https://github.com/neovim/neovim.git
synced 2025-10-22 17:11:49 +00:00
feat(filetype.lua): add support for tmux.conf files
This commit is contained in:

committed by
Gregory Anders

parent
19864bd995
commit
94d5358922
@@ -1038,6 +1038,7 @@ local filename = {
|
|||||||
["tidy.conf"] = "tidy",
|
["tidy.conf"] = "tidy",
|
||||||
tidyrc = "tidy",
|
tidyrc = "tidy",
|
||||||
[".tidyrc"] = "tidy",
|
[".tidyrc"] = "tidy",
|
||||||
|
[".tmux.conf"] = "tmux",
|
||||||
["/.cargo/config"] = "toml",
|
["/.cargo/config"] = "toml",
|
||||||
Pipfile = "toml",
|
Pipfile = "toml",
|
||||||
["Gopkg.lock"] = "toml",
|
["Gopkg.lock"] = "toml",
|
||||||
@@ -1233,6 +1234,8 @@ local pattern = {
|
|||||||
[".*/%.config/systemd/user/.*%.d/.*%.conf"] = "systemd",
|
[".*/%.config/systemd/user/.*%.d/.*%.conf"] = "systemd",
|
||||||
[".*/etc/systemd/system/.*%.d/.*%.conf"] = "systemd",
|
[".*/etc/systemd/system/.*%.d/.*%.conf"] = "systemd",
|
||||||
[".*%.t%.html"] = "tilde",
|
[".*%.t%.html"] = "tilde",
|
||||||
|
["%.?tmux.*%.conf"] = "tmux",
|
||||||
|
["%.?tmux.*%.conf.*"] = { "tmux", { priority = -1 } },
|
||||||
[".*/%.cargo/config"] = "toml",
|
[".*/%.cargo/config"] = "toml",
|
||||||
[".*/%.cargo/credentials"] = "toml",
|
[".*/%.cargo/credentials"] = "toml",
|
||||||
[".*/etc/udev/udev%.conf"] = "udevconf",
|
[".*/etc/udev/udev%.conf"] = "udevconf",
|
||||||
|
Reference in New Issue
Block a user