-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.batrc
42 lines (29 loc) · 959 Bytes
/
.batrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Set the theme to "TwoDark"
--theme="TwoDark"
# Show line numbers, Git modifications and file header (but no grid)
--style=numbers,plain,changes,header
# Use italic text on the terminal (not supported on all terminals)
--italic-text=always
# Add mouse scrolling support in less (does not work with older
# versions of "less")
--pager="less -FR"
# Use C++ syntax (instead of C) for .h header files
--map-syntax h:cpp
# Use "gitignore" highlighting for ".ignore" files
--map-syntax .ignore:gitignore
# Use "gitconfig" highlighting for ".gitconfig" file
--map-syntax .gitconfig.local:gitconfig
# Use "zsh" highlighting for ".zshrc" file
--map-syntax .zshrc.local:zsh
# Use "vim" highlighting for ".vimrc" file
--map-syntax .vimrc.local:vim
# Always use colors.
--color=always
# Never use wrapping on code.
--wrap=never
# Never use a pager utility.
--paging=never
# Only print first 100 lines.
--line-range :100
# Use 4 length spaced tabs.
--tabs=4