dotfiles
1# This is `bat`s configuration file. Each line either contains a comment or
2# a command-line option that you want to pass to `bat` by default. You can
3# run `bat --help` to get a list of all possible configuration options.
4
5# Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes`
6# for a list of all available themes
7--theme="TwoDark"
8
9# Enable this to use italic text on the terminal. This is not supported on all
10# terminal emulators (like tmux, by default):
11#--italic-text=always
12
13# Uncomment the following line to disable automatic paging:
14#--paging=never
15
16# Uncomment the following line if you are using less version >= 551 and want to
17# enable mouse scrolling support in `bat` when running inside tmux. This might
18# disable text selection, unless you press shift.
19#--pager="less --RAW-CONTROL-CHARS --quit-if-one-screen --mouse"
20
21# Syntax mappings: map a certain filename pattern to a language.
22# Example 1: use the C++ syntax for Arduino .ino files
23# Example 2: Use ".gitignore"-style highlighting for ".ignore" files
24--map-syntax "*.ino:C++"
25#--map-syntax ".ignore:Git Ignore"