Compare commits

...

3 Commits

Author SHA1 Message Date
b9d3b9a710 Update vim plugins 2019-12-15 17:41:06 -05:00
d9d8bcb5f6 Fix application script to actually work 2019-12-15 17:41:06 -05:00
41a6e59d27 Attempt to special case displaying hostname in prompt
Make it pretty
2019-12-15 17:41:03 -05:00
15 changed files with 19 additions and 16 deletions

View File

@@ -1,12 +1,11 @@
#!/usr/bin/env nix-shell
#! nix-shell -p stow
#! nix-shell -p stow -i bash
stow bash
stow sh
stow .inputrc # Readline configuration
stow readline
stow vim
stow .vimrc
stow ruby
stow python

View File

@@ -12,6 +12,10 @@ no_color="\[\033[0m\]"
# Interactive Prompt: "$ " in green
export PS1="${green}\$${no_color} "
if [ "${HOSTNAME}" != "crypt" ]; then
PS1="${PS1}${blue}${HOSTNAME} ${PS1}"
fi
# Continuation Prompt: "> " in cyan
export PS2="${cyan}>${no_color} "
# Debugging Prompt: "# " in blue