start the change to alacritty
This commit is contained in:
parent
d12f727e2e
commit
bd3a592b70
@ -4,4 +4,7 @@ export PATH="$DOTWRYN/bin/$(hostnamectl --static):$PATH"
|
|||||||
command -v kitty >/dev/null 2>&1 \
|
command -v kitty >/dev/null 2>&1 \
|
||||||
&& export TERMINAL=$(which kitty)
|
&& export TERMINAL=$(which kitty)
|
||||||
|
|
||||||
|
command -v alacritty >/dev/null 2>&1 \
|
||||||
|
&& export TERMINAL=$(which alacritty)
|
||||||
|
|
||||||
for SCRIPT in $(find /etc/x11/xinit/xinitrc.d); do source $SCRIPT; done
|
for SCRIPT in $(find /etc/x11/xinit/xinitrc.d); do source $SCRIPT; done
|
||||||
|
@ -15,6 +15,7 @@ Plugin 'VundleVim/Vundle.vim'
|
|||||||
Plugin 'tpope/vim-surround'
|
Plugin 'tpope/vim-surround'
|
||||||
Plugin 'valloric/youcompleteme'
|
Plugin 'valloric/youcompleteme'
|
||||||
Plugin 'w0rp/ale'
|
Plugin 'w0rp/ale'
|
||||||
|
Plugin 'chrisbra/unicode.vim'
|
||||||
" }}}
|
" }}}
|
||||||
" ---------------------------------------------------------------------
|
" ---------------------------------------------------------------------
|
||||||
call vundle#end()
|
call vundle#end()
|
||||||
@ -78,5 +79,7 @@ nmap <Leader>ae <Plug>(ale_next)
|
|||||||
nmap <Leader>ar <Plug>(ale_previous)
|
nmap <Leader>ar <Plug>(ale_previous)
|
||||||
nmap <Leader>f <Plug>(ale_fix)
|
nmap <Leader>f <Plug>(ale_fix)
|
||||||
|
|
||||||
|
imap <C-U> <Plug>(UnicodeFuzzy)
|
||||||
|
|
||||||
" }}}
|
" }}}
|
||||||
" ---------------------------------------------------------------------
|
" ---------------------------------------------------------------------
|
||||||
|
10
zsh/unipicker
Normal file
10
zsh/unipicker
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
command -v unipicker >/dev/null 2>&1 || return 0
|
||||||
|
|
||||||
|
__ZSH_SHORTCUT__UNIPICKER() {
|
||||||
|
LBUFFER+="$(unipicker)"
|
||||||
|
zle reset-prompt
|
||||||
|
}
|
||||||
|
|
||||||
|
zle -N unipicker __ZSH_SHORTCUT__UNIPICKER
|
||||||
|
bindkey unipicker
|
Loading…
Reference in New Issue
Block a user