Compare commits

...

4 Commits

Author SHA1 Message Date
yosh 33df113c6f vimrc: small changes 2023-08-20 11:47:33 -04:00
yosh 666878d5a6 mimix: cleanup for updated ver 2023-08-20 11:47:12 -04:00
yosh af3c60f9c4 inputrc: history with ctrl-p/n 2023-08-20 11:46:38 -04:00
yosh 33d47c5331 sync xresources with desktop 2023-08-20 11:45:48 -04:00
5 changed files with 34 additions and 35 deletions

View File

@ -49,11 +49,11 @@ URxvt.url-select-plus.imgviewer: feh
! Keybinds
URxvt.keysym.M-c: eval:selection_to_clipboard
URxvt.keysym.M-v: eval:paste_clipboard
URxvt.keysym.Shift-Up: command:\033]720;1\007
URxvt.keysym.Shift-Down: command:\033]721;1\007
URxvt.keysym.Control-Right: \033[1;5C
URxvt.keysym.Control-Left: \033[1;5D
URxvt.keysym.M-f: perl:url-select-plus:select_next
URxvt.keysym.M-K: command:\033]720;1\007
URxvt.keysym.M-J: command:\033]721;1\007
URxvt.keysym.C-Right: \033[1;5C
URxvt.keysym.C-Left: \033[1;5D
URxvt.keysym.M-u: perl:url-select-plus:select_next
URxvt.keysym.C-BackSpace: 
! Appearance
@ -66,11 +66,7 @@ URxvt.boldFont: -*-fixed-bold-r-semicondensed-*-13-*,xft:Cozette
URxvt.matcher.rend.0: Uline fg14
URxvt*inherentPixmap: true
URxvt*transparent: true
URxvt*shading: 40
! URxvt.depth: 32
! URxvt.background: [80]#0b1c2c
! URxvt.background.expr: pad keep { move -40, -20, align 1, 1, load "$HOME/pics/wallpapers/term/sabrina_coffee_trsp.png" }
URxvt.background.expr: keep { shade -0.75, rootalign root }
! }}}
! XBomb {{{

View File

@ -28,7 +28,7 @@ gap 0 0 0 0
snapdist 8
moveamount 2
fontname "X11 Fixed:pixelsize=13"
command term urxvt
command term urxvtc
# }}}
# bindings {{{
@ -104,14 +104,14 @@ bind-key 4C-h window-move-left-big
bind-key 4C-l window-move-right-big
bind-key 4C-k window-move-up-big
bind-key 4C-j window-move-down-big
bind-key MS-h window-resize-left
bind-key MS-k window-resize-up
bind-key MS-l window-resize-right
bind-key MS-j window-resize-down
bind-key MC-h window-resize-left-big
bind-key MC-k window-resize-up-big
bind-key MC-l window-resize-right-big
bind-key MC-j window-resize-down-big
bind-key 4M-h window-resize-left
bind-key 4M-k window-resize-up
bind-key 4M-l window-resize-right
bind-key 4M-j window-resize-down
bind-key 4MS-h window-resize-left-big
bind-key 4MS-k window-resize-up-big
bind-key 4MS-l window-resize-right-big
bind-key 4MS-j window-resize-down-big
# }}}
# tiling {{{

View File

@ -24,7 +24,6 @@ $if mode=vi
\C-u: nop
# Don't open $EDITOR on rlwrap command line with <Ctrl-^>
\C-^^: nop
# Open $EDITOR on rlwrap command line with <Ctrl-x><Ctrl-e>
"diW": "lBdW"
"yiW": "lByW"
"ciW": "lBcW"
@ -33,6 +32,8 @@ $if mode=vi
"ciw": "lbcw"
?: reverse-search-history
/: forward-search-history
\C-p: reverse-search-history
\C-n: forward-search-history
set keymap vi-insert
# Don't search history with <Ctrl-s>
Control-s: nop

View File

@ -1,21 +1,23 @@
TERM: urxvt
TERMINAL: urxvtc
MENU: dmenu
MENUARGS: -c:-l:20:-bw:4
MENU: dmenu -c -l 20 -bw 4
text/: $TERM -e $VISUAL --
text/: $TERMINAL -e $VISUAL --
audio/: mpv --player-operation-mode=pseudo-gui --
video/: mpv --player-operation-mode=pseudo-gui --
image/: nsxiv-rifle --
inode/directory: $TERM -e nnn --
application/pdf: zathura --
epub: zathura --
djvu: zathura --
inode/directory: $TERMINAL -e nnn --
image/xcf: gimp --
application/pdf: zathura --
application/epub+zip: zathura --
image/vnd.djvu: zathura --
x-scheme-handler/magnet: $TERMINAL -e aria2c --
application/x-bittorrent: $TERMINAL -e aria2c --
x-scheme-handler/http: firefox --
x-scheme-handler/https: firefox --
x-scheme-handler/https: firefox --
x-scheme-handler/chrome: firefox --
text/html: firefox --
application/x-extension-htm: firefox --
application/x-extension-html: firefox --
application/x-extension-shtml: firefox --

View File

@ -99,6 +99,7 @@ set backspace=indent,eol,start
set whichwrap+=<,>,h,l
set linebreak
set shellredir=>
set copyindent
" }}}
" status bar ugh {{{
@ -143,9 +144,8 @@ nnoremap <silent> <C-x><C-x><C-\> :call zensnippets#showall()<CR>
" }}}
" FILETYPE SHIT {{{
autocmd FileType c setlocal sw=8 ts=8
autocmd FileType rust setlocal noet ci pi sts=0 sw=8 ts=8
autocmd FileType python setlocal noet ci pi sts=0 sw=8 ts=8
autocmd FileType haskell setlocal et
autocmd FileType tex setlocal sw=2 sts=2 et conceallevel=1
autocmd FileType c,cpp,rust setlocal sw=8 ts=8
autocmd FileType rust,python setlocal noet pi
autocmd FileType haskell,tex setlocal et
autocmd FileType tex setlocal sw=2 sts=2 conceallevel=1
" }}}