From 4d3271224206f8836f050765fbf2a5d57867c56c Mon Sep 17 00:00:00 2001 From: Vince Varga Date: Sun, 18 Feb 2024 15:55:21 +0100 Subject: [PATCH] Add tmux.conf as a bash file type (#9653) * Add conf as a bash file type Tmux and tmux.conf is used widely in software developer circles. Having the tmux.conf file not have any syntax highlighting by default is (IMO) not ideal for an editor that otherwise "just works". * Use tmux.conf glob instead of simply conf for tmux Co-authored-by: Michael Davis --------- Co-authored-by: Michael Davis --- languages.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/languages.toml b/languages.toml index bfa33bf58ea02..78078ca5886a9 100644 --- a/languages.toml +++ b/languages.toml @@ -860,6 +860,7 @@ file-types = [ "tcshrc", "bashrc_Apple_Terminal", "zshrc_Apple_Terminal", + { glob = "tmux.conf" }, { glob = ".bash_history" }, { glob = ".bash_login" }, { glob = ".bash_logout" },