From 4a451f794b8bfae1f6e45593c4922721c64da398 Mon Sep 17 00:00:00 2001 From: caiowakamatsu Date: Wed, 24 Sep 2025 03:52:25 -0300 Subject: [PATCH] zsh basic --- zsh/.zshrc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 zsh/.zshrc diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..9b3ff70 --- /dev/null +++ b/zsh/.zshrc @@ -0,0 +1,20 @@ +# ~/.zshrc + +HISTSIZE=10000 +SAVEHIST=10000 +HISTFILE=~/.zsh_history + +setopt autocd +setopt correct +setopt extendedglob +setopt nomatch + +PROMPT='%F{green}%n@%m%f:%F{blue}%~%f %# ' + +alias ll='ls -lh' +alias la='ls -lha' +alias gs='git status' +alias v='nvim' + +[ -f ~/.zshrc.local ] && source ~/.zshrc.local +