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
|
type "$1" >/dev/null 2>&1
|
||||||
}
|
}
|
||||||
# If you have zellij installed, this will auto start it
|
# If you have zellij installed, this will auto start it
|
||||||
if [ -z "$ZELLIJ" ] && checkCommand zellij; then
|
#if [ -z "$ZELLIJ" ] && checkCommand zellij; then
|
||||||
#export ZELLIJ_AUTO_ATTACH=true
|
# #export ZELLIJ_AUTO_ATTACH=true
|
||||||
exec zellij
|
# exec zellij
|
||||||
fi
|
#fi
|
||||||
|
|
||||||
# Speed up shell load on WSL
|
# Speed up shell load on WSL
|
||||||
OLDPATH=$PATH
|
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)
|
# 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
|
# Set aliases
|
||||||
[ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc" # >/dev/null 2>&1 &;
|
[ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc" # >/dev/null 2>&1 &;
|
||||||
|
|
||||||
|
@ -157,4 +157,4 @@ unset OLDPATH
|
||||||
unset START
|
unset START
|
||||||
unset END
|
unset END
|
||||||
|
|
||||||
source /home/mira/.config/broot/launcher/bash/br
|
|
||||||
|
|
|
@ -14,5 +14,4 @@ recipients = [
|
||||||
"6A10DF52E755E8174CD5C4C18ED045D80561353B",
|
"6A10DF52E755E8174CD5C4C18ED045D80561353B",
|
||||||
"30FA9C303E45B42AA688839C557DE35A80C4461F"
|
"30FA9C303E45B42AA688839C557DE35A80C4461F"
|
||||||
]
|
]
|
||||||
|
args = ["-v","--pinentry=loopback"]
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
" Install vim-plug if not found
|
" Install vim-plug if not found
|
||||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
if empty(glob('~/.config/vim/autoload/plug.vim'))
|
||||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
silent !curl -fLo ~/.config/vim/autoload/plug.vim --create-dirs
|
||||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
endif
|
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?
|
set laststatus=2 "lightline requires it?
|
||||||
"Setup Plugins
|
"Setup Plugins
|
||||||
|
|
Loading…
Add table
Reference in a new issue