config 1.1 KB

123456789101112131415161718192021222324252627
  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. # Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes`
  5. # for a list of all available themes
  6. #--theme="TwoDark"
  7. # Enable this to use italic text on the terminal. This is not supported on all
  8. # terminal emulators (like tmux, by default):
  9. #--italic-text=always
  10. #
  11. #--wrap=never
  12. # Uncomment the following line to disable automatic paging:
  13. #--paging=never
  14. # Uncomment the following line if you are using less version >= 551 and want to
  15. # enable mouse scrolling support in `bat` when running inside tmux. This might
  16. # disable text selection, unless you press shift.
  17. #--pager="less --RAW-CONTROL-CHARS --quit-if-one-screen --mouse"
  18. # Syntax mappings: map a certain filename pattern to a language.
  19. # Example 1: use the C++ syntax for Arduino .ino files
  20. # Example 2: Use ".gitignore"-style highlighting for ".ignore" files
  21. #--map-syntax "*.ino:C++"
  22. #--map-syntax ".ignore:Git Ignore"