Compare commits

...

7 Commits

2 changed files with 15 additions and 3 deletions

View File

@ -3,3 +3,8 @@
email = colin@semicolin.games email = colin@semicolin.games
[init] [init]
defaultBranch = main 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 "^[[F" end-of-line
bindkey "^[[3~" delete-char bindkey "^[[3~" delete-char
path+=("~/bin")
path+=("$HOME/bin")
path+=("$HOME/.local/bin")
EDITOR=vim EDITOR=vim
PROMPT="%K{blue}%F{white}%n@%m %F{#ffff00}%~%f%E%k PROMPT="%K{blue}%F{ffffff}%n@%m %~%f%E
%F{cyan}$ %F{white}" %k%F{cyan}$%f "
RPROMPT= RPROMPT=
HISTFILESIZE=100000000 HISTFILESIZE=100000000
@ -16,3 +18,8 @@ setopt INC_APPEND_HISTORY
alias ls="ls --color=auto" alias ls="ls --color=auto"
alias vi=vim alias vi=vim
# RubyGems stuff (for Jekyll, possibly other stuff):
export GEM_HOME="$HOME/software/gems"
path+=("$GEM_HOME/bin")