Better tab switching, shared dmenu font for pass
authorMart Lubbers <mart@martlubbers.net>
Fri, 19 Oct 2018 06:27:51 +0000 (08:27 +0200)
committerMart Lubbers <mart@martlubbers.net>
Fri, 19 Oct 2018 06:27:51 +0000 (08:27 +0200)
config.h/dwm/config.h
shell/.bashrc
vim/.vimrc

index 77868b1..61682ee 100644 (file)
@@ -61,8 +61,8 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn()
 static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
 static const char *termcmd[]  = { "st", NULL };
 static const char *quitcmd[]  = { "killall", "xinit", NULL };
-static const char *passmenu[]  = { "passmenu", NULL };
-static const char *passmenu_type[]  = { "passmenu", "--type", NULL };
+static const char *passmenu[]  = { "passmenu", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
+static const char *passmenu_type[]  = { "passmenu", "--type", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
 static const char *scr[] = { "scr", NULL };
 static const char *scr_sel[] = { "scr", "selection", NULL };
 static const char *lock[] = { "slock", NULL };
index e5e5995..51cd06a 100644 (file)
@@ -15,6 +15,7 @@ export SUDO_ASKPASS=/usr/lib/ssh/ssh-askpass
 export NOTMUCH_CONFIG=~/.config/notmuch/config
 
 export CLEAN_HOME=/opt/clean
+
 export PATH=~/.local/bin:$PATH
 export PATH=$PATH:$CLEAN_HOME/lib/exe:$CLEAN_HOME/bin
 export PATH=$PATH:/opt/texlive/2018/bin/x86_64-linux:/opt/zotero
index 5c63c93..e70d8b5 100644 (file)
@@ -1,7 +1,5 @@
 " Automaticly source some files after writing
 autocmd! bufwritepost .vimrc source %
-autocmd! bufwritepost .bashrc !source %
-autocmd! bufwritepost .Xresources !xrdb -merge %
 
 " Some general options
 syntax enable
@@ -33,9 +31,11 @@ set list
 map j gj
 map k gk
 
-" Custom split switching using tab
-map <TAB>l <C-W>l
-map <TAB>h <C-W>h
+" Custom split and tabswitching using tab
+map <TAB>l <C-PageDown>
+map <TAB>h <C-PageUp>
+map <TAB><TAB>l <C-W>l
+map <TAB><TAB>h <C-W>h
 map <TAB>j <C-W>j
 map <TAB>k <C-W>k