#!/bin/bash
#########################################################
# 							#
# This is BashStyle-NG  				#
#							#
# Licensed under GNU GENERAL PUBLIC LICENSE v3    	#
#							#
# Copyright 2007 - 2016 Christopher Bratusek		#
#							#
#########################################################

if [[ ${enable_colors} == True ]]; then
	export PAGER="less"

	if [[ -f ${BSNG_DATADIR}/bashstyle-ng/termcap/bar/$(ini_get termcap_bar).termcap ]]; then
		dbg_msg $"BashStyle-NG Setting: Termcap (bar)" $(ini_get termcap_bar)
		dbg_log source ${BSNG_DATADIR}/bashstyle-ng/termcap/bar/$(ini_get termcap_bar).termcap
	fi

	if [[ -f ${BSNG_DATADIR}/bashstyle-ng/termcap/body/$(ini_get termcap_body).termcap ]]; then
		dbg_msg $"BashStyle-NG Setting: Termcap (body)" $(ini_get termcap_body)
		dbg_log source ${BSNG_DATADIR}/bashstyle-ng/termcap/body/$(ini_get termcap_body).termcap
	fi
fi
