From 32162538021c894f30f80ec41c91d4ce5c39a518 Mon Sep 17 00:00:00 2001 From: Kaspar Vollenweider Date: Sun, 25 Jan 2015 13:16:45 +0100 Subject: [PATCH] just found coloured man. pointless plugin --- plugins/man-coloured/man-coloured.plugin.zsh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 plugins/man-coloured/man-coloured.plugin.zsh diff --git a/plugins/man-coloured/man-coloured.plugin.zsh b/plugins/man-coloured/man-coloured.plugin.zsh deleted file mode 100644 index 18fc9366..00000000 --- a/plugins/man-coloured/man-coloured.plugin.zsh +++ /dev/null @@ -1,15 +0,0 @@ -# Authors: https://github.com/casaper -# -#### Gets less to display man pages with coloured keywords -#### for better readability. - -man() { - env LESS_TERMCAP_mb=$'\e[01;3m' \ - LESS_TERMCAP_md=$'\e[01;38;5;1m' \ - LESS_TERMCAP_me=$'\e[0m' \ - LESS_TERMCAP_se=$'\e[0m' \ - LESS_TERMCAP_so=$'\e[38;5;5m' \ - LESS_TERMCAP_ue=$'\e[0m' \ - LESS_TERMCAP_us=$'\e[04;38;5;2m' \ - man "$@" -}