Added functions and tmux bindings for zsh
This commit is contained in:
parent
c020b2d026
commit
0ad817b00a
3 changed files with 16 additions and 0 deletions
4
.local/dotfiles/environment/tmux-bindkey.zsh
Normal file
4
.local/dotfiles/environment/tmux-bindkey.zsh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
bindkey -s "\e[24;3~" ""
|
||||||
|
bindkey -s "\e[1;2A" ""
|
||||||
|
bindkey -s "\e[1;2B" ""
|
||||||
|
|
4
.local/dotfiles/functions/pakbuild.zsh
Normal file
4
.local/dotfiles/functions/pakbuild.zsh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
function pakbuild() {
|
||||||
|
flatpak-builder --gpg-sign=25787986B19167B89BFF55CF3159FF4CB13EBFB4 --repo=linux-help $@
|
||||||
|
}
|
||||||
|
|
8
.local/dotfiles/functions/reload_dotfiles.zsh
Normal file
8
.local/dotfiles/functions/reload_dotfiles.zsh
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
function reload_dotfiles ()
|
||||||
|
{
|
||||||
|
while read f
|
||||||
|
do
|
||||||
|
source "$f"
|
||||||
|
done < <(find "${HOME}/.local/dotfiles" -type f -name '*.zsh')
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue