summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/.local/bin/keyboard-us1
-rw-r--r--tmux/.tmux.conf1
-rw-r--r--vifm/.config/vifm/vifmrc1
-rw-r--r--vim/.vim/spell/en.utf-8.add2
-rw-r--r--vim/.vim/spell/en.utf-8.add.splbin840 -> 880 bytes
-rw-r--r--vim/.vimrc2
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
index 005cc30..9920420 100644
--- a/vim/.vim/spell/en.utf-8.add.spl
+++ b/vim/.vim/spell/en.utf-8.add.spl
Binary files differ
diff --git a/vim/.vimrc b/vim/.vimrc
index 11f5469..eecd1c5 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -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