From ccf26a86942c2a79cca763e4a27c05164a36baec Mon Sep 17 00:00:00 2001 From: Arne Swanson Date: Tue, 7 Aug 2018 20:03:02 -0400 Subject: [PATCH] added git and zsh --- README.md | 2 ++ build.mk | 2 ++ git/.gitconfig | 3 +++ zsh/.zprofile | 2 ++ zsh/.zshrc | 25 +++++++++++++++++++++++++ 5 files changed, 34 insertions(+) create mode 100644 build.mk create mode 100644 git/.gitconfig create mode 100644 zsh/.zprofile create mode 100644 zsh/.zshrc diff --git a/README.md b/README.md index d23d95a..afe228e 100644 --- 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 new file mode 100644 index 0000000..6b977e2 --- /dev/null +++ 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 new file mode 100644 index 0000000..48baf36 --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,3 @@ +[user] + email = nownpl@0111.click + name = Arne Swanson diff --git a/zsh/.zprofile b/zsh/.zprofile new file mode 100644 index 0000000..33e3965 --- /dev/null +++ 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 new file mode 100644 index 0000000..d8f38c1 --- /dev/null +++ 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"