diff --git a/.config/.gitignore b/.config/.gitignore index 0a1b057..bb7190c 100644 --- a/.config/.gitignore +++ b/.config/.gitignore @@ -34,6 +34,7 @@ !/qutebrowser/** !/redshift/** !/rofi/** +!/sc-im/** !/sxhkd/** !/tmux/** !/yay/** diff --git a/.config/sc-im/scimrc b/.config/sc-im/scimrc new file mode 100644 index 0000000..7904a80 --- /dev/null +++ b/.config/sc-im/scimrc @@ -0,0 +1,26 @@ +# _ +# __________ (_)___ ___ +# / ___/ ___/____ / / __ `__ \ +# (__ ) /__ /___// / / / / / / +# /____/\___/ /_/_/ /_/ /_/ +# sc-im runtime config file. + +# go to last cell (kakoune/helix style) +nnoremap "ge" "G" + +# go to first / last row ↕ +nnoremap "gk" "^" +nnoremap "gj" "#" + +# go to first / last column ↔ +nnoremap "gh" "0" +nnoremap "gl" "$" + +# go to top / center / bottom row on screen +nnoremap "gt" "H" +nnoremap "gc" "M" +nnoremap "gb" "L" + +# go to last occupied cell +nnoremap "g." "gl" +