dotfiles

Personal dotfiles.
Log | Files | Refs | LICENSE

commit 6c21d80b28212ba4d1aec188f33022976b3f2dcf
parent a491340d0b0c808fa8226c71537f66035e7b3f26
Author: Arne Swanson <nownpl@0111.click>
Date:   Fri, 10 Aug 2018 08:21:56 -0400

aa

Diffstat:
README.md | 7++++++-
argle.json | 25+++++++++++++++++++++++++
build.mk | 16+++++++++++++---
3 files changed, 44 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -1,7 +1,12 @@ # dotfiles build using plan9 `mk` (preferably from [9base][0]), uses GNU `stow` - mk -f build.mk + mk -f build.mk install +if this is the first time installing and you dont have oh-my-zsh + + mk -f build.mk first-install install + +included is `argle.json`, the colourscheme that i use (and created) [0]: http://tools.suckless.org/9base/ \ No newline at end of file diff --git a/argle.json b/argle.json @@ -0,0 +1,24 @@ +{ + "name": "argle", + "author": "arne swanson", + "color": [ + "#18171e", + "#ec4c4c", + "#32303c", + "#4a4758", + "#7291dc", + "#848290", + "#72dcd5", + "#b4b2bd", + "#47444e", + "#ec4c4c", + "#32303c", + "#4a4758", + "#7291dc", + "#848290", + "#72dcd5", + "#b4b2bd" + ], + "foreground": "#e3e2e6", + "background": "#0f0e13" +}+ \ No newline at end of file diff --git a/build.mk b/build.mk @@ -1,3 +1,14 @@ +first-install: + sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" + # install plugins and themes + ## geometry + git clone https://github.com/geometry-zsh/geometry ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/geometry + ## plugins + git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions + git clone https://github.com/zdharma/history-search-multi-word ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/history-search-multi-word + git clone https://github.com/zdharma/fast-syntax-highlighting ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting + install: - stow -t $HOME zsh - stow -t $HOME git- \ No newline at end of file + stow -t "$HOME" zsh + stow -t "$HOME" git +