added git and zsh

This commit is contained in:
Arne Swanson 2018-08-07 20:03:02 -04:00
parent 883237a7fe
commit ccf26a8694
5 changed files with 34 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# dotfiles
build using plan9 `mk` or `make`, needs `stow`
mk -f build.mk

2
build.mk Normal file
View File

@ -0,0 +1,2 @@
install:
stow -t $HOME zsh

3
git/.gitconfig Normal file
View File

@ -0,0 +1,3 @@
[user]
email = nownpl@0111.click
name = Arne Swanson

2
zsh/.zprofile Normal file
View File

@ -0,0 +1,2 @@
rm -rf /home/nownpl/.tmp/*
[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx

25
zsh/.zshrc Normal file
View File

@ -0,0 +1,25 @@
export PATH=$HOME/.bin:$PATH
export ZSH="/home/nownpl/.oh-my-zsh"
GEOMETRY_COLOR_EXIT_VALUE="red"
GEOMETRY_COLOR_DIR="cyan"
GEOMETRY_SYMBOL_PROMPT="◊"
GEOMETRY_SYMBOL_RPROMPT=">"
GEOMETRY_SYMBOL_EXIT_VALUE="◊"
GEOMETRY_SYMBOL_ROOT="◊"
ZSH_THEME="geometry/geometry"
plugins=(
git
fast-syntax-highlighting
history-search-multi-word
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh
source $HOME/.cargo/env
export LANG=en_US.UTF-8
export ARCHFLAGS="-arch x86_64"
export SSH_KEY_PATH="~/.ssh/id_rsa"