From 011a32ef611d7ed4f36386174ce801fdb092bf8c Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Sat, 8 Apr 2023 11:17:10 -0500 Subject: [PATCH] adding things from various systems --- zsh_aliases | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zsh_aliases b/zsh_aliases index 3276ec0..c5d421d 100644 --- a/zsh_aliases +++ b/zsh_aliases @@ -43,7 +43,7 @@ cpfile() { } -### for Fuzzy History Finder utility +### Fuzzy History Finder utility fhf() { cat $HOME/.zhistory | fzf --scheme=history \ @@ -66,7 +66,7 @@ fhf() { } -### for Fuzzy Man Finder utility +### Fuzzy Man Finder utility fmf() { man -k . | sort - | @@ -77,13 +77,13 @@ fmf() { --prompt=' ' \ --pointer='󰧚 ' \ --tiebreak=begin,chunk,length \ - --preview='man {1}' \ + --preview='man {1} | col -bf' \ --preview-window=70%:wrap:border-rounded \ --preview-label="| Manual Entry |" } -### Emoji picker +### Emoji selector emojis() { emojis=$(curl -sSL 'https://git.io/JXXO7') echo $emojis | @@ -119,5 +119,5 @@ alias pwsh="clear && pwsh -NoExit -c /home/ez/OMP/pwshPromt.ps1" alias pacnew="sudo DIFFPROG=meld pacdiff" -### for using GITHUB personal access token +### GITHUB personal access token alias gitpw="cpfile ~/Git/PersonalAccessToken/PAT"