mirror of
https://github.com/sharkdp/bat.git
synced 2025-09-02 03:12:25 +01:00
Merge branch 'master' into skip-highlighting-when-no-color
This commit is contained in:
@@ -432,6 +432,8 @@ pub fn build_app(interactive_output: bool) -> Command {
|
||||
pre-defined style ('full'). To set a default style, add the \
|
||||
'--style=\"..\"' option to the configuration file or export the \
|
||||
BAT_STYLE environment variable (e.g.: export BAT_STYLE=\"..\").\n\n\
|
||||
By default, the following components are enabled:\n \
|
||||
changes, grid, header-filename, numbers, snip\n\n\
|
||||
Possible values:\n\n \
|
||||
* default: enables recommended style components (default).\n \
|
||||
* full: enables all available components.\n \
|
||||
|
@@ -0,0 +1,2 @@
|
||||
[mappings]
|
||||
"INI" = ["**/.aws/credentials", "**/.aws/config"]
|
@@ -1,3 +1,3 @@
|
||||
# JSON Lines is a simple variation of JSON #2535
|
||||
[mappings]
|
||||
"JSON" = ["*.jsonl"]
|
||||
"JSON" = ["*.jsonl", "*.jsonc"]
|
3
src/syntax_mapping/builtins/common/xonsh.toml
Normal file
3
src/syntax_mapping/builtins/common/xonsh.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
# Xonsh shell (https://xon.sh/)
|
||||
[mappings]
|
||||
"Python" = ["*.xsh", "*.xonshrc"]
|
8
src/syntax_mapping/builtins/linux/50-containers.toml
Normal file
8
src/syntax_mapping/builtins/linux/50-containers.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
# see https://github.com/containers/image/tree/main/docs
|
||||
[mappings]
|
||||
"TOML" = [
|
||||
"/usr/share/containers/**/*.conf",
|
||||
"/etc/containers/**/*.conf",
|
||||
"${HOME}/.config/containers/**/*.conf",
|
||||
"${XDG_CONFIG_HOME}/containers/**/*.conf",
|
||||
]
|
7
src/syntax_mapping/builtins/linux/50-podman-quadlet.toml
Normal file
7
src/syntax_mapping/builtins/linux/50-podman-quadlet.toml
Normal file
@@ -0,0 +1,7 @@
|
||||
# see `man quadlet`
|
||||
[mappings]
|
||||
"INI" = [
|
||||
"**/containers/systemd/*.{container,volume,network,kube,image}",
|
||||
"**/containers/systemd/users/*.{container,volume,network,kube,image}",
|
||||
"**/containers/systemd/users/*/*.{container,volume,network,kube,image}",
|
||||
]
|
Reference in New Issue
Block a user