This commit is contained in:
krolyxon 2022-07-23 23:44:54 +05:30
parent 370c5d5a21
commit 75f7550e7e
2 changed files with 13 additions and 16 deletions

View File

@ -1,6 +1,6 @@
# Window Customization # Window Customization
window: window:
#opacity: 0.95 opacity: 0.95
dimensions: dimensions:
columns: 122 columns: 122
lines: 50 lines: 50
@ -21,19 +21,19 @@ env:
font: font:
# The normal (roman) font face to use. # The normal (roman) font face to use.
normal: normal:
family: Hack Nerd Font family: Jetbrains Mono
# Style can be specified to pick a specific face. # Style can be specified to pick a specific face.
style: Regular style: Regular
# The bold font face # The bold font face
bold: bold:
family: Hack Nerd Font family: Jetbrains Mono
# Style can be specified to pick a specific face. # Style can be specified to pick a specific face.
style: Bold style: Bold
# The italic font face # The italic font face
italic: italic:
family: Hack Nerd Font family: Jetbrains Mono
# Style can be specified to pick a specific face. # Style can be specified to pick a specific face.
style: italic style: italic

View File

@ -4,23 +4,20 @@
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d" [ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
alias \ alias \
zconf='nvim ~/.config/zsh/.zshrc' \ ls='ls -hN --group-directories-first --color=auto' \
ls='ls -a --group-directories-first --color=auto' \ lsa='ls -lahN --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' \
dots='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' \ dots='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' \
lf="lfub" \ lf="lfub" \
nb="newsboat" \ 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. # Verbosity and settings that you pretty much just always are going to want.
alias \ alias \
cp="cp -iv" \ cp="cp -iv" \
mv="mv -iv" \ mv="mv -iv" \
rm="rm -vI" \ rm="rm -vI" \
yt='yt-dlp --embed-metadata -i' \
yta='yt -x -f bestaudio/best' \
# Colorize commands when possible. # Colorize commands when possible.
alias \ alias \
@ -29,5 +26,5 @@ alias \
ip="ip -color=auto" ip="ip -color=auto"
ec() {find ~/.config -type f | fzf | xargs -r $EDITOR ;} 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 % ;} ef() {fzf | xargs -r -I % $EDITOR % ;}