fix gpg?, neovim
This commit is contained in:
parent
3ab0904979
commit
3b403a69a2
3 changed files with 14 additions and 10 deletions
|
@ -7,10 +7,10 @@ checkCommand(){
|
|||
type "$1" >/dev/null 2>&1
|
||||
}
|
||||
# If you have zellij installed, this will auto start it
|
||||
if [ -z "$ZELLIJ" ] && checkCommand zellij; then
|
||||
#export ZELLIJ_AUTO_ATTACH=true
|
||||
exec zellij
|
||||
fi
|
||||
#if [ -z "$ZELLIJ" ] && checkCommand zellij; then
|
||||
# #export ZELLIJ_AUTO_ATTACH=true
|
||||
# exec zellij
|
||||
#fi
|
||||
|
||||
# Speed up shell load on WSL
|
||||
OLDPATH=$PATH
|
||||
|
@ -141,7 +141,7 @@ fi
|
|||
|
||||
|
||||
# Set up broot if installed (a nicer tree, probably has other cool stuff I haven't looked at yet)
|
||||
[ -e "$HOME"/.config/broot/launcher/bash/br ] && zsh-defer -t 15 eval "$(broot --print-shell-function zsh)"
|
||||
[ -e "$HOME"/.config/broot/launcher/bash/br ] && zsh-defer -t 5 eval "$(broot --print-shell-function zsh)"
|
||||
# Set aliases
|
||||
[ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc" # >/dev/null 2>&1 &;
|
||||
|
||||
|
@ -157,4 +157,4 @@ unset OLDPATH
|
|||
unset START
|
||||
unset END
|
||||
|
||||
source /home/mira/.config/broot/launcher/bash/br
|
||||
|
||||
|
|
|
@ -14,5 +14,4 @@ recipients = [
|
|||
"6A10DF52E755E8174CD5C4C18ED045D80561353B",
|
||||
"30FA9C303E45B42AA688839C557DE35A80C4461F"
|
||||
]
|
||||
|
||||
|
||||
args = ["-v","--pinentry=loopback"]
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
" Install vim-plug if not found
|
||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
||||
if empty(glob('~/.config/vim/autoload/plug.vim'))
|
||||
silent !curl -fLo ~/.config/vim/autoload/plug.vim --create-dirs
|
||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
endif
|
||||
if empty(glob('~/.local/share/nvim/site/autoload/plug.vim'))
|
||||
silent !curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
endif
|
||||
|
||||
|
||||
set laststatus=2 "lightline requires it?
|
||||
"Setup Plugins
|
||||
|
|
Loading…
Add table
Reference in a new issue