diff options
-rw-r--r-- | feh/.config/feh/keys | 3 | ||||
-rw-r--r-- | i3/.config/i3/config | 3 | ||||
-rw-r--r-- | qutebrowser/.config/qutebrowser/config.py | 1 | ||||
-rw-r--r-- | vim/.vim/spell/en.utf-8.add | 3 | ||||
-rw-r--r-- | vim/.vim/spell/en.utf-8.add.spl | bin | 406 -> 284 bytes | |||
-rw-r--r-- | vim/.vimrc | 3 | ||||
-rw-r--r-- | zathura/.config/zathura/zathurarc | 2 | ||||
-rw-r--r-- | zsh/.zshrc | 4 |
8 files changed, 17 insertions, 2 deletions
diff --git a/feh/.config/feh/keys b/feh/.config/feh/keys index fa16ee6..3528efa 100644 --- a/feh/.config/feh/keys +++ b/feh/.config/feh/keys @@ -12,3 +12,6 @@ zoom_in plus zoom_out minus zoom_fill s zoom_fit a + +orient_1 r +reload_image R diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 010808c..fd90b91 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -13,6 +13,9 @@ bindsym $mod+Return exec --no-startup-id i3-sensible-terminal for_window [instance="scratchpad"] move window to scratchpad, scratchpad show bindsym $mod+Shift+Return exec --no-startup-id i3-sensible-terminal -name scratchpad +# Assign applications to certain workspaces +# assign [class="qutebrowser"] 1:qutebrowser + # kill focused window bindsym $mod+d kill diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 40a228e..18d689e 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -53,6 +53,7 @@ c.url.searchengines = { 'ddg': 'https://duckduckgo.com/?q={}', 'cam': 'https://dictionary.cambridge.org/dictionary/english/{}', 'dic': 'http://www.dictionary.com/browse/{}', + 'th': 'http://www.thesaurus.com/browse/{}', 'google': 'https://www.google.com/search?hl=en&q={}', 'hn': 'https://hn.algolia.com/?query={}', 'lit': 'https://www.littre.org/recherche?mot={}', diff --git a/vim/.vim/spell/en.utf-8.add b/vim/.vim/spell/en.utf-8.add index 9cf8f88..59346c3 100644 --- a/vim/.vim/spell/en.utf-8.add +++ b/vim/.vim/spell/en.utf-8.add @@ -9,3 +9,6 @@ inkjet microfluidic spinodal orthonormality +solvability +Wasserstein +Galerkin diff --git a/vim/.vim/spell/en.utf-8.add.spl b/vim/.vim/spell/en.utf-8.add.spl Binary files differindex 9559f0d..d0e415c 100644 --- a/vim/.vim/spell/en.utf-8.add.spl +++ b/vim/.vim/spell/en.utf-8.add.spl @@ -42,7 +42,6 @@ Plug 'neomake/neomake' Plug 'KKPMW/sacredforest-vim' Plug 'scrooloose/nerdtree' Plug 'sjl/Gundo.vim', { 'on' : 'GundoToggle' } -Plug 'terryma/vim-expand-region' Plug 'terryma/vim-multiple-cursors' Plug 'tommcdo/vim-exchange' Plug 'tommcdo/vim-ninja-feet' @@ -374,7 +373,7 @@ nnoremap <silent> >B :BufSurfForward<cr>:bd! #<cr> " Alternate file nnoremap <bs> -nnoremap <tab> :Buffers<cr> +nnoremap + :Buffers<cr> " Source current file nnoremap ,s :source %<cr> diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc index e93c296..8289c6e 100644 --- a/zathura/.config/zathura/zathurarc +++ b/zathura/.config/zathura/zathurarc @@ -1,3 +1,5 @@ map <C-e> scroll down map <C-y> scroll up set font "monospace normal 12" + +map H feedkeys ":exec sh -c \"cat ~/.local/share/zathura/history | grep -Po '\[\K[^\]]*' | tail -10 | dmenu | xargs zathura\"" @@ -50,6 +50,10 @@ PROMPT='%F{red}[%M]%f %0~ $ ' else PROMPT='%0~ $ ' fi + +if [[ -n $VIFM ]]; then +PROMPT="%F{green}[VIFM]%f $PROMPT" +fi # }}} ## Plugins {{{ [ ! -d ~/.zsh/zgen ] && git clone https://github.com/tarjoilija/zgen.git ~/.zsh/zgen |