Compare commits

..

2 Commits

Author SHA1 Message Date
1cfc7360cf move prompt definition to .zshrc 2024-03-28 20:28:30 -04:00
Jason Swank
a71f25fd44 ssh: ignore local config directives 2024-01-25 11:41:19 -05:00
3 changed files with 3 additions and 1 deletions

1
ssh/.ssh/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
local-config

View File

@ -1,7 +1,6 @@
HISTFILE=~/.histfile HISTFILE=~/.histfile
HISTSIZE=1000 HISTSIZE=1000
SAVEHIST=1000 SAVEHIST=1000
PROMPT="%B%m:%~> %b"
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
export EDITOR=nvim export EDITOR=nvim

View File

@ -8,6 +8,8 @@ alias w3='w3m -T text/html'
# allow for # to be interpreted as a comment on the command line # allow for # to be interpreted as a comment on the command line
setopt interactivecomments setopt interactivecomments
PROMPT="%B%m:%~> %b"
# cd tricks # cd tricks
alias -- -='cd -' alias -- -='cd -'
setopt auto_cd # there is no binary by that name in your $PATH, your shell will cd into it that directory setopt auto_cd # there is no binary by that name in your $PATH, your shell will cd into it that directory