diff options
author | Vince Varga | 2024-02-18 14:55:21 +0000 |
---|---|---|
committer | GitHub | 2024-02-18 14:55:21 +0000 |
commit | 64326698225999016300423c4b90f8a8c7b8f38b (patch) | |
tree | f85c6692f5d015ad34b23abd44843ebb7c26f3de | |
parent | 78c34194b5c83beb26ca04f12bf9d53fd5aba801 (diff) |
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 <mcarsondavis@gmail.com>
---------
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
-rw-r--r-- | languages.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml index bfa33bf5..78078ca5 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" }, |