aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2016-02-03 10:21:53 +0100
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2016-02-03 10:21:53 +0100
commitd122825978da0e274d466b066b2407856d378a5b (patch)
tree5981408ead0d412c9278802bc82bedbf08c68680
parent31e52e45c77ed4965b46723f514085afd280f66c (diff)
downloaddotfiles-d122825978da0e274d466b066b2407856d378a5b.tar.gz
dotfiles-d122825978da0e274d466b066b2407856d378a5b.tar.bz2
dotfiles-d122825978da0e274d466b066b2407856d378a5b.zip
Updates to various files
-rwxr-xr-xherbstluftwm/.config/herbstluftwm/rofi_theme.sh2
-rw-r--r--liquidprompt/.liquidpromptrc2
-rw-r--r--vim/.vim/.netrwhist3
-rw-r--r--vim/.vim/vimrc5
4 files changed, 9 insertions, 3 deletions
diff --git a/herbstluftwm/.config/herbstluftwm/rofi_theme.sh b/herbstluftwm/.config/herbstluftwm/rofi_theme.sh
index 4921a66..8be7f45 100755
--- a/herbstluftwm/.config/herbstluftwm/rofi_theme.sh
+++ b/herbstluftwm/.config/herbstluftwm/rofi_theme.sh
@@ -2,7 +2,7 @@
2 2
3theme_dir="$HLWM_CONF_DIR/themes" 3theme_dir="$HLWM_CONF_DIR/themes"
4current=$(readlink "$theme_dir/current") 4current=$(readlink "$theme_dir/current")
5themes=$(ls "$theme_dir" | grep -vE "current|template|README\.md|$current") 5themes=$(ls "$theme_dir" | grep -vE "^current|template|README\.md|$current\$")
6theme=$(echo "$themes" | rofi -dmenu -p "theme:" $@) 6theme=$(echo "$themes" | rofi -dmenu -p "theme:" $@)
7 7
8if [ -n "$theme" ] && [ -f "$theme_dir/$theme" ]; then 8if [ -n "$theme" ] && [ -f "$theme_dir/$theme" ]; then
diff --git a/liquidprompt/.liquidpromptrc b/liquidprompt/.liquidpromptrc
index 57414d5..3f1e897 100644
--- a/liquidprompt/.liquidpromptrc
+++ b/liquidprompt/.liquidpromptrc
@@ -102,7 +102,7 @@ LP_ENABLE_TIME=1
102 102
103# Show runtime of the last command if over LP_RUNTIME_THRESHOLD 103# Show runtime of the last command if over LP_RUNTIME_THRESHOLD
104# Recommended value is 0 104# Recommended value is 0
105LP_ENABLE_RUNTIME=0 105LP_ENABLE_RUNTIME=1
106 106
107# Minimal runtime to be displayed 107# Minimal runtime to be displayed
108# Recommended value is 2 108# Recommended value is 2
diff --git a/vim/.vim/.netrwhist b/vim/.vim/.netrwhist
new file mode 100644
index 0000000..0f58e40
--- /dev/null
+++ b/vim/.vim/.netrwhist
@@ -0,0 +1,3 @@
1let g:netrw_dirhistmax =10
2let g:netrw_dirhist_cnt =1
3let g:netrw_dirhist_1='/home/tom/programming/aquatracker/site'
diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc
index 52f1be7..2f358d2 100644
--- a/vim/.vim/vimrc
+++ b/vim/.vim/vimrc
@@ -80,6 +80,7 @@ nnoremap <silent> <Leader>ml :call AppendModeline()<CR>
80if has('nvim') 80if has('nvim')
81 nmap <BS> <C-W>h 81 nmap <BS> <C-W>h
82 tnoremap <Esc> <C-\><C-n> 82 tnoremap <Esc> <C-\><C-n>
83 autocmd TermOpen * setlocal nolist
83endif 84endif
84 85
85""" PLUGIN SPECIFIC SETTINGS 86""" PLUGIN SPECIFIC SETTINGS
@@ -97,12 +98,14 @@ if exists("g:loaded_pathogen")
97 " otf-powerline-symbols-git 98 " otf-powerline-symbols-git
98 " powerline-fonts-git 99 " powerline-fonts-git
99 let g:airline_powerline_fonts = 1 100 let g:airline_powerline_fonts = 1
101 let g:airline#extensions#tabline#enabled = 1
102
100 if !exists('g:airline_symbols') 103 if !exists('g:airline_symbols')
101 let g:airline_symbols = {} 104 let g:airline_symbols = {}
102 endif 105 endif
106
103 let g:airline_symbols.space = "\ua0" 107 let g:airline_symbols.space = "\ua0"
104 set laststatus=2 108 set laststatus=2
105
106endif 109endif
107 110
108" vim: set ts=8 sw=4 tw=0 et : 111" vim: set ts=8 sw=4 tw=0 et :