diff options
-rwxr-xr-x | bin/.local/bin/keyboard-us | 1 | ||||
-rw-r--r-- | tmux/.tmux.conf | 1 | ||||
-rw-r--r-- | vifm/.config/vifm/vifmrc | 1 | ||||
-rw-r--r-- | vim/.vim/spell/en.utf-8.add | 2 | ||||
-rw-r--r-- | vim/.vim/spell/en.utf-8.add.spl | bin | 840 -> 880 bytes | |||
-rw-r--r-- | vim/.vimrc | 2 |
6 files changed, 7 insertions, 0 deletions
diff --git a/bin/.local/bin/keyboard-us b/bin/.local/bin/keyboard-us index 8f93f66..5d4f2b7 100755 --- a/bin/.local/bin/keyboard-us +++ b/bin/.local/bin/keyboard-us @@ -13,6 +13,7 @@ setxkbmap us xmodmap -e "clear Lock" xmodmap -e "keysym Caps_Lock = Control_L Control_L" xmodmap -e "add Control = Control_L" +xcape -e 'Control_L=Escape' # Make space (Super_L, space) xmodmap -e "keysym space = Super_L" diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 3775965..3d27940 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -22,6 +22,7 @@ set -g pane-border-status off # Alternative: top/bottom/... set -g pane-border-format "#{pane_current_command}" set-hook -g session-created "if-shell '[ -n \""'$SSH_CONNECTION'"\" ]' 'set status-bg \"#aa4444\"'" +set-hook -g client-attached "if-shell '[ -n \""'$SSH_CONNECTION'"\" ]' 'set status-bg \"#aa4444\"'" PILOT_IGNORE= PILOT_BOUNDARY=ignore diff --git a/vifm/.config/vifm/vifmrc b/vifm/.config/vifm/vifmrc index 1bd27d8..7a73409 100644 --- a/vifm/.config/vifm/vifmrc +++ b/vifm/.config/vifm/vifmrc @@ -34,6 +34,7 @@ nnoremap r :run<cr> nnoremap ,b :backup<cr> nnoremap ,t :!urxvt &<cr> nnoremap ,l :!less %f<cr> +nnoremap ,i :!inkscape %f<cr> nnoremap <c-d> :q<cr> nnoremap <c-l> <c-w>l nnoremap <bs> <c-w>h diff --git a/vim/.vim/spell/en.utf-8.add b/vim/.vim/spell/en.utf-8.add index 6ae89f7..cea9a65 100644 --- a/vim/.vim/spell/en.utf-8.add +++ b/vim/.vim/spell/en.utf-8.add @@ -49,3 +49,5 @@ ansatz tensorized indices minima +nondegenerate +colinear diff --git a/vim/.vim/spell/en.utf-8.add.spl b/vim/.vim/spell/en.utf-8.add.spl Binary files differindex 005cc30..9920420 100644 --- a/vim/.vim/spell/en.utf-8.add.spl +++ b/vim/.vim/spell/en.utf-8.add.spl @@ -254,12 +254,14 @@ endif function! Multiple_cursors_before() if has("nvim") let b:deoplete_disable_auto_complete = 1 + call deoplete#disable() endif endfunction function! Multiple_cursors_after() if has("nvim") let b:deoplete_disable_auto_complete = 0 + call deoplete#enable() else endfunction |