dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 5aaa3e45fc0169099be8cc600c409aea16b54090
parent 6e1fa67d508b1a20db9d62f7504c305f49640a54
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sun, 10 Mar 2019 07:48:58 +0100

Fix paths in NNN bookmarks

Diffstat:
Mlinks/.profile | 19++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/links/.profile b/links/.profile @@ -8,15 +8,16 @@ export TERMINAL=st export BROWSER=surf-open.sh # nnn settings -NNN_BMS='a:~/articles;' -NNN_BMS+='b:~/books;' -NNN_BMS+='c:~/code;' -NNN_BMS+='d:~/doc;' -NNN_BMS+='D:~/code/dotfiles/links;' -NNN_BMS+='s:~/uni/postdoc/stanford-sigma;' -NNN_BMS+='t:~/tmp;' -NNN_BMS+='u:~/uni;' -NNN_BMS+='v:~/videos' +NNN_BMS="a:$HOME/articles;" +NNN_BMS+="b:$HOME/books;" +NNN_BMS+="c:$HOME/code;" +NNN_BMS+="d:$HOME/doc;" +NNN_BMS+="D:$HOME/code/dotfiles/links;" +NNN_BMS+="m:/mnt;" +NNN_BMS+="s:$HOME/uni/postdoc/stanford-sigma;" +NNN_BMS+="t:$HOME/tmp;" +NNN_BMS+="u:$HOME/uni;" +NNN_BMS+="v:$HOME/videos" export NNN_BMS # bookmarks (max 10) export NNN_USE_EDITOR=1 # always open text files in $EDITOR export NNN_SCRIPT="$HOME/.config/nnn"