Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • iliya.saroukha/dotfiles
1 result
Show changes
Commits on Source (2)
Subproject commit f916a48af752201e6d00f856b7543ef9989b0fa2 Subproject commit 575e4b5301c7820bee2bbdee99218dcdc28f20d1
...@@ -26,14 +26,17 @@ HISTFILE=~/.zsh_history ...@@ -26,14 +26,17 @@ HISTFILE=~/.zsh_history
SAVEHIST=$HISTSIZE SAVEHIST=$HISTSIZE
HISTDUP=erase HISTDUP=erase
setopt appendhistory setopt appendhistory
setopt alwaystoend
setopt sharehistory setopt sharehistory
setopt hist_ignore_space setopt hist_ignore_space
setopt hist_ignore_all_dups setopt hist_ignore_all_dups
setopt hist_save_no_dups setopt hist_save_no_dups
setopt hist_ignore_dups setopt hist_ignore_dups
setopt hist_find_no_dups setopt hist_find_no_dups
setopt autocd
# Completion styling # Completion styling
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"
zstyle ':completion:*' menu no zstyle ':completion:*' menu no
zstyle ':fzf-tab:*' use-fzf-default-opts yes zstyle ':fzf-tab:*' use-fzf-default-opts yes
...@@ -47,6 +50,7 @@ alias lg="lazygit" ...@@ -47,6 +50,7 @@ alias lg="lazygit"
alias show="tree --noreport --gitignore" alias show="tree --noreport --gitignore"
alias lt="eza -l --icons -T --sort=time" alias lt="eza -l --icons -T --sort=time"
alias ff="fastfetch" alias ff="fastfetch"
alias ip='ip --color'
tn () { tn () {
tmux new -s $@ tmux new -s $@
......