commit ccf26a86942c2a79cca763e4a27c05164a36baec
parent 883237a7fea4656822ae71fbf4b42e5c97fd2a6d
Author: Arne Swanson <nownpl@0111.click>
Date: Tue, 7 Aug 2018 20:03:02 -0400
added git and zsh
Diffstat:
5 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md
@@ -1,2 +1,4 @@
# dotfiles
+build using plan9 `mk` or `make`, needs `stow`
+ mk -f build.mk+
\ No newline at end of file
diff --git a/build.mk b/build.mk
@@ -0,0 +1,2 @@
+install:
+ stow -t $HOME zsh+
\ No newline at end of file
diff --git a/git/.gitconfig b/git/.gitconfig
@@ -0,0 +1,3 @@
+[user]
+ email = nownpl@0111.click
+ name = Arne Swanson
diff --git a/zsh/.zprofile b/zsh/.zprofile
@@ -0,0 +1,2 @@
+rm -rf /home/nownpl/.tmp/*
+[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx+
\ No newline at end of file
diff --git a/zsh/.zshrc b/zsh/.zshrc
@@ -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"