Remove broken tar alias, change alacritty default font size

This commit is contained in:
Arthur Khachaturov 2023-12-11 17:06:14 +03:00
parent c7e226a84c
commit 3ecbac352e
No known key found for this signature in database
GPG key ID: 542ADA2564CCFDDB
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ window:
font: font:
normal: normal:
family: "Mononoki Nerd Font" family: "Mononoki Nerd Font"
size: 12.5 size: 10.5
offset: offset:
x: 1 x: 1

View file

@ -50,13 +50,12 @@ zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}:ma=48;5;8;38;5;15"
autoload -U colors && colors autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b " PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# command options # ls aliases
alias ls="lsd --color=auto" alias ls="lsd --color=auto"
alias l="ls -lh" alias l="ls -lh"
alias la="ls -lah" alias la="ls -lah"
alias ll="ls -lh" alias ll="ls -lh"
alias tree="ls --tree" alias tree="ls --tree"
alias tar="tar --exclude-vcs-ignores --exclude-vcs"
# set bat as help pager # set bat as help pager
alias -g -- -h='-h 2>&1 | bat --language=help --style=plain' alias -g -- -h='-h 2>&1 | bat --language=help --style=plain'
@ -72,3 +71,4 @@ alias dt="git --git-dir=$HOME/.dotfiles/git --work-tree=$HOME"
alias rz="exec zsh" alias rz="exec zsh"
alias reload_completion="autoload -Uz compinit && compinit" alias reload_completion="autoload -Uz compinit && compinit"
alias gitignore="cp ${HOME}/.local/share/gitignore-template ./.gitignore" alias gitignore="cp ${HOME}/.local/share/gitignore-template ./.gitignore"
alias venv="source _venv"