Compare commits

..

No commits in common. '1ac60bc1f0a6c5f63e8560e44cb98a85781291bb' and 'eb426ebe17673ab1d8a9c0272db966b2f50cd8a2' have entirely different histories.

@ -1,26 +1,58 @@
# Pre-requisite: zi (https://github.com/z-shell/zi)
# sh -c "$(curl -fsSL get.zshell.dev)" -- -i skip -b main
typeset -A ZI
ZI[BIN_DIR]="${HOME}/.zi/bin"
source "${ZI[BIN_DIR]}/zi.zsh"
autoload -Uz _zi
(( ${+_comps} )) && _comps[zi]=_zi
# end of zi init
zi snippet OMZL::history.zsh
zi light spaceship-prompt/spaceship-prompt
zi light zsh-users/zsh-autosuggestions
zi light zsh-users/zsh-syntax-highlighting
zi is-snippet wait lucid for \
OMZP::{sdk,fzf} \
has'nodenv' \
OMZP::nodenv
# If you come from bash you might have to change your $PATH. # If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:$HOME/.local/bin:$PATH # export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
# Path to your Oh My Zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load
ZSH_THEME="spaceship"
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"
# Uncomment one of the following lines to change the auto-update behavior
# zstyle ':omz:update' mode disabled # disable automatic updates
# zstyle ':omz:update' mode auto # update automatically without asking
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
# Uncomment the following line to change how often to auto-update (in days).
# zstyle ':omz:update' frequency 13
# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true"
# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"
# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"
# Uncomment the following line to display red dots whilst waiting for completion.
# You can also set it to another string to have that shown instead of the default red dots.
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
# COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"
# Plugins
# Custom plugins added to $ZSH_CUSTOM/plugins/
# - https://github.com/zsh-users/zsh-autosuggestions
# - https://github.com/zsh-users/zsh-syntax-highlighting.git
plugins=(fzf sdk nodenv zsh-autosuggestions zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# USER CONFIGURATION # USER CONFIGURATION
@ -42,12 +74,22 @@ fi
# History # History
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Allow multiple sessions to append to one Zsh command history. # set the maximum number of lines to be saved in the history file
export HISTSIZE="50000"
export SAVEHIST="$HISTSIZE"
# append new history entries to the history file
setopt APPEND_HISTORY setopt APPEND_HISTORY
# Write to the history file immediately, not when the shell exits. # save each command to the history file as soon as it is executed
setopt INC_APPEND_HISTORY setopt INC_APPEND_HISTORY
# ignore recording duplicate consecutive commands in the history
setopt HIST_IGNORE_DUPS
# ignore commands that start with a space in the history
setopt HIST_IGNORE_SPACE
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Git # Git
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
@ -106,14 +148,6 @@ function ssh() {
fi fi
} }
export ZSH_TMUX_AUTOSTART=true
export ZSH_TMUX_AUTOSTART_ONCE=false
export ZSH_TMUX_AUTOCONNECT=true
export ZSH_TMUX_DEFAULT_SESSION_NAME=build
export ZSH_TMUX_CONFIG=$HOME/.tmux.conf
zi snippet OMZP::tmux
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Fzf # Fzf
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------

Loading…
Cancel
Save