Compare commits

..

7 Commits

2 changed files with 15 additions and 3 deletions

View File

@ -3,3 +3,8 @@
email = colin@semicolin.games
[init]
defaultBranch = main
[core]
filemode = false
editor = vim
[merge]
conflictstyle = diff3

13
zshrc
View File

@ -3,11 +3,13 @@ bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
bindkey "^[[3~" delete-char
path+=("~/bin")
path+=("$HOME/bin")
path+=("$HOME/.local/bin")
EDITOR=vim
PROMPT="%K{blue}%F{white}%n@%m %F{#ffff00}%~%f%E%k
%F{cyan}$ %F{white}"
PROMPT="%K{blue}%F{ffffff}%n@%m %~%f%E
%k%F{cyan}$%f "
RPROMPT=
HISTFILESIZE=100000000
@ -16,3 +18,8 @@ setopt INC_APPEND_HISTORY
alias ls="ls --color=auto"
alias vi=vim
# RubyGems stuff (for Jekyll, possibly other stuff):
export GEM_HOME="$HOME/software/gems"
path+=("$GEM_HOME/bin")