Added functions and tmux bindings for zsh

This commit is contained in:
Eric Renfro 2018-12-24 23:38:36 -05:00
parent c6b7c892ea
commit 5ae6d3f600
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,4 @@
bindkey -s "\e[24;3~" ""
bindkey -s "\e[1;2A" ""
bindkey -s "\e[1;2B" ""

View File

@ -0,0 +1,4 @@
function pakbuild() {
flatpak-builder --gpg-sign=25787986B19167B89BFF55CF3159FF4CB13EBFB4 --repo=linux-help $@
}

View File

@ -0,0 +1,8 @@
function reload_dotfiles ()
{
while read f
do
source "$f"
done < <(find "${HOME}/.local/dotfiles" -type f -name '*.zsh')
}