aliasrc
This commit is contained in:
parent
370c5d5a21
commit
75f7550e7e
|
|
@ -1,6 +1,6 @@
|
|||
# Window Customization
|
||||
window:
|
||||
#opacity: 0.95
|
||||
opacity: 0.95
|
||||
dimensions:
|
||||
columns: 122
|
||||
lines: 50
|
||||
|
|
@ -21,19 +21,19 @@ env:
|
|||
font:
|
||||
# The normal (roman) font face to use.
|
||||
normal:
|
||||
family: Hack Nerd Font
|
||||
family: Jetbrains Mono
|
||||
# Style can be specified to pick a specific face.
|
||||
style: Regular
|
||||
|
||||
# The bold font face
|
||||
bold:
|
||||
family: Hack Nerd Font
|
||||
family: Jetbrains Mono
|
||||
# Style can be specified to pick a specific face.
|
||||
style: Bold
|
||||
|
||||
# The italic font face
|
||||
italic:
|
||||
family: Hack Nerd Font
|
||||
family: Jetbrains Mono
|
||||
# Style can be specified to pick a specific face.
|
||||
style: italic
|
||||
|
||||
|
|
|
|||
|
|
@ -4,23 +4,20 @@
|
|||
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
|
||||
|
||||
alias \
|
||||
zconf='nvim ~/.config/zsh/.zshrc' \
|
||||
ls='ls -a --group-directories-first --color=auto' \
|
||||
lsa='ls -la --group-directories-first --color=auto' \
|
||||
ytdl='yt-dlp' \
|
||||
ytdlv='yt-dlp -f "(mp4)"' \
|
||||
ytdlm='yt-dlp -f "(mp3)"' \
|
||||
cl='clear' \
|
||||
ls='ls -hN --group-directories-first --color=auto' \
|
||||
lsa='ls -lahN --group-directories-first --color=auto' \
|
||||
dots='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' \
|
||||
lf="lfub" \
|
||||
nb="newsboat" \
|
||||
hst='history 1 -1 | cut -c 8- | sort | uniq | fzf | tr -d '\n' | xclip -sel c'
|
||||
|
||||
# Verbosity and settings that you pretty much just always are going to want.
|
||||
alias \
|
||||
cp="cp -iv" \
|
||||
mv="mv -iv" \
|
||||
rm="rm -vI" \
|
||||
yt='yt-dlp --embed-metadata -i' \
|
||||
yta='yt -x -f bestaudio/best' \
|
||||
|
||||
|
||||
# Colorize commands when possible.
|
||||
alias \
|
||||
|
|
@ -29,5 +26,5 @@ alias \
|
|||
ip="ip -color=auto"
|
||||
|
||||
ec() {find ~/.config -type f | fzf | xargs -r $EDITOR ;}
|
||||
es() {find ~/.local/bin -type f | fzf | xargs -r $EDITOR ;}
|
||||
se() { cd ~/.local/bin; $EDITOR $(fzf) ;}
|
||||
ef() {fzf | xargs -r -I % $EDITOR % ;}
|
||||
|
|
|
|||
Loading…
Reference in New Issue