This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # History settings | |
| export HISTFILE="$HOME/.zsh_history" | |
| export HISTSIZE=5000 | |
| export SAVEHIST=$HISTSIZE | |
| export HISTFILESIZE=10000 | |
| export HISTTIMEFORMAT="%F %T " # add timestamp to history | |
| # Zsh specific history options | |
| setopt appendhistory | |
| setopt sharehistory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Adding home binary path | |
| export PATH="$HOME/.local/bin:$HOME/bin:$HOME/.bun/bin:$HOME/.config/emacs/bin:$PATH" | |
| # set up XDG folders | |
| export XDG_DATA_HOME="$HOME/.local/share" | |
| export XDG_CONFIG_HOME="$HOME/.config" | |
| export XDG_STATE_HOME="$HOME/.local/state" | |
| export XDG_CACHE_HOME="$HOME/.cache" | |
| # Setting up history export |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # See the pacman.conf(5) manpage for option and repository directives | |
| # Paste this file in /etc/ | |
| # This is a base options for pacman.conf | |
| [options] | |
| Color | |
| ILoveCandy | |
| VerbosePkgLists | |
| HoldPkg = pacman glibc ly | |
| Architecture = auto |