#!/bin/bash

export PAGER=less

# add colors for less when viewing manpages
export LESS_TERMCAP_mb=$'\e[01;31m' # for what is this line good for ?^^
export LESS_TERMCAP_md=$'\e[01;33m' # syntax and keywords
export LESS_TERMCAP_me=$'\e[0m' # some rows
export LESS_TERMCAP_se=$'\e[0m' # first and last row background
export LESS_TERMCAP_so=$'\e[00;40;36m' # statusbar and searchhighlights
export LESS_TERMCAP_ue=$'\e[0m' # background
export LESS_TERMCAP_us=$'\e[01;35m' # "variables"



