commit 92c6f8bab97c218a750c028db370ce53b3fe56f4
parent 42ff785d0fd045ca9fd105592e1b9a7fe96054b6
Author: Arne Swanson <nownpl@0111.click>
Date: Fri, 10 Aug 2018 08:35:59 -0400
made some changes
Diffstat:
3 files changed, 25 insertions(+), 24 deletions(-)
diff --git a/README.md b/README.md
@@ -1,12 +1,15 @@
# dotfiles
-build using plan9 `mk` (preferably from [9base][0]), uses GNU `stow`
+## installation
+build using plan9 mk (preferably from [9base][0])
+uses [stow][1] for symlinking dotfiles
+just do
- mk -f build.mk install
+ mk install
-if this is the first time installing and you dont have oh-my-zsh
+if this is the first time you install:
- mk -f build.mk first-install
+ mk first_run
+ mk install
-included is `argle.json`, the colourscheme that i use (and created)
-
-[0]: http://tools.suckless.org/9base/-
\ No newline at end of file
+[0]: http://tools.suckless.org/9base/
+[1]: https://www.gnu.org/software/stow/+
\ No newline at end of file
diff --git a/build.mk b/build.mk
@@ -1,16 +0,0 @@
-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
-
- mk -f build.mk install
-
-install:
- stow -t "$HOME" zsh
- stow -t "$HOME" git
-
diff --git a/mkfile b/mkfile
@@ -0,0 +1,14 @@
+first_run:
+ 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
+