start the change to alacritty

This commit is contained in:
Wryn (yage) Wagner 2023-11-14 13:05:09 -07:00
parent d12f727e2e
commit bd3a592b70
3 changed files with 16 additions and 0 deletions

View File

@ -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

View File

@ -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
View 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