Compare commits
2 Commits
b9d3b9a710
...
9c1fba6459
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c1fba6459 | |||
| a1b9a98969 |
@ -1,12 +1,11 @@
|
|||||||
#!/usr/bin/env nix-shell
|
#!/usr/bin/env nix-shell
|
||||||
#! nix-shell -p stow
|
#! nix-shell -p stow -i bash
|
||||||
|
|
||||||
stow bash
|
stow bash
|
||||||
stow sh
|
stow sh
|
||||||
stow .inputrc # Readline configuration
|
stow readline
|
||||||
|
|
||||||
stow vim
|
stow vim
|
||||||
stow .vimrc
|
|
||||||
|
|
||||||
stow ruby
|
stow ruby
|
||||||
stow python
|
stow python
|
||||||
|
|||||||
@ -12,6 +12,10 @@ no_color="\[\033[0m\]"
|
|||||||
|
|
||||||
# Interactive Prompt: "$ " in green
|
# Interactive Prompt: "$ " in green
|
||||||
export PS1="${green}\$${no_color} "
|
export PS1="${green}\$${no_color} "
|
||||||
|
if [ "${HOSTNAME}" != "crypt" ]; then
|
||||||
|
PS1="${PS1}${blue}${HOSTNAME}${PS1}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Continuation Prompt: "> " in cyan
|
# Continuation Prompt: "> " in cyan
|
||||||
export PS2="${cyan}>${no_color} "
|
export PS2="${cyan}>${no_color} "
|
||||||
# Debugging Prompt: "# " in blue
|
# Debugging Prompt: "# " in blue
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user