]> git.zndr.dk Git - dotfiles.git/commitdiff
Add color highlightint to less
authorJannik ZANDER <jzander@grundfos.com>
Sat, 7 Jul 2018 08:25:31 +0000 (10:25 +0200)
committerJannik ZANDER <jzander@grundfos.com>
Sat, 7 Jul 2018 08:25:48 +0000 (10:25 +0200)
.bashrc
.config/bash/aliases
.vim/vimrc

diff --git a/.bashrc b/.bashrc
index 65bbcf5b9547a05c5c6c4903208c0cb5a1b0c958..ea459889b4935ed47b12c5327af8aae67f8b1a17 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -9,8 +9,8 @@ cd ~
 export SHELL='bash'
 export EDITOR='vim'
 export VISUAL='vim'
-export PAGER='less -eFRX'
-export MANPAGER="less -eFRX"
+export PAGER='less'
+export MANPAGER='less'
 
 # Set prompt
 if [[ -z "$MSYS2_PS1" ]]; then
@@ -48,9 +48,9 @@ export HISTIGNORE="ll:ls:cd:cd -:pwd:exit:date:* --help";
 # colored GCC warnings and errors
 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
 
-# Highlight section titles in manual pages
-export LESS_TERMCAP_md="${yellow}";
-
+# syntax highlighting in less
+export LESSOPEN="| /mingw64/bin/src-hilite-lesspipe.sh %s"
+export LESS=' -R '
 
 # Load aliases, functions, etc
 for file in ${HOME}/.config/bash/*; do
index 8059952b77f2512e60afefb1425e3ff5abfbebf1..7ae9a9458a6478ef5a1bc7929646cbb9a98da580 100644 (file)
@@ -16,13 +16,13 @@ fi
 
 alias ls="ls $colorflag $lsflags"
 
-# grep
+# grep and less color
 alias grep='grep --color=auto'
 alias egrep='egrep --color=auto'
 alias fgrep='fgrep --color=auto'
+alias less='less -RX'                         # raw control characters, don't clear the screen after quitting
 
 # Shortcuts
-alias less='less -erFRX'                         # raw control characters, don't clear the screen after quitting
 alias info='info --vi-keys'
 alias open='xdg-open &>/dev/null'
 alias h='history'
index 9abf62d89a53293c8ea03b479ad6a557b6026ce6..c1cd30f70e892de615277927fe011ad41374effa 100644 (file)
@@ -66,6 +66,8 @@ set wildmode=longest:full,full
 set wildignore+=tags,.*.un~,*.pyc
 set winaltkeys=no
 
+let mapleader = ","
+
 " visual
 " ---------------------
 highlight Normal guibg=black guifg=white
@@ -195,7 +197,6 @@ let g:ctrlp_cmd = 'CtrlP'
 
 " mappings
 " ---------------------
-let mapleader = ","
 
 " buffers
 nnoremap <Leader>b    :buffer<cr>