]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - zsh/os/rc.Darwin
0922f1f22b8e846157944331daae1eb688205969
[config/dotfiles.git] / zsh / os / rc.Darwin
1 # Zsh configuration file for darwin computers (Mac OS X).
2
3
4 # Store the current clipboard in CLIPBOARD before every command so it can be
5 # used in commands.
6 preexec () {
7     export CLIPBOARD="$(pbpaste)"
8 }
9 # Initialize CLIPBOARD so it's available for completion directly after
10 # startup.
11 CLIPBOARD=""
12 export CLIPBOARD