diff options
| -rwxr-xr-x | herbstluftwm/.config/herbstluftwm/rofi_theme.sh | 2 | ||||
| -rw-r--r-- | liquidprompt/.liquidpromptrc | 2 | ||||
| -rw-r--r-- | vim/.vim/.netrwhist | 3 | ||||
| -rw-r--r-- | vim/.vim/vimrc | 5 |
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 | ||
| 3 | theme_dir="$HLWM_CONF_DIR/themes" | 3 | theme_dir="$HLWM_CONF_DIR/themes" |
| 4 | current=$(readlink "$theme_dir/current") | 4 | current=$(readlink "$theme_dir/current") |
| 5 | themes=$(ls "$theme_dir" | grep -vE "current|template|README\.md|$current") | 5 | themes=$(ls "$theme_dir" | grep -vE "^current|template|README\.md|$current\$") |
| 6 | theme=$(echo "$themes" | rofi -dmenu -p "theme:" $@) | 6 | theme=$(echo "$themes" | rofi -dmenu -p "theme:" $@) |
| 7 | 7 | ||
| 8 | if [ -n "$theme" ] && [ -f "$theme_dir/$theme" ]; then | 8 | if [ -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 |
| 105 | LP_ENABLE_RUNTIME=0 | 105 | LP_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 @@ | |||
| 1 | let g:netrw_dirhistmax =10 | ||
| 2 | let g:netrw_dirhist_cnt =1 | ||
| 3 | let 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> | |||
| 80 | if has('nvim') | 80 | if 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 | ||
| 83 | endif | 84 | endif |
| 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 | |||
| 106 | endif | 109 | endif |
| 107 | 110 | ||
| 108 | " vim: set ts=8 sw=4 tw=0 et : | 111 | " vim: set ts=8 sw=4 tw=0 et : |
