-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
2,657 additions
and
693 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,16 @@ | ||
.PHONY: all test clean vim git zsh bash nvim fish | ||
.PHONY: all test clean git nvim fish | ||
|
||
all: bash | ||
|
||
bash: | ||
cp bash/_bashrc ~/.bashrc | ||
cp bash/_primary_bashrc ~/.primary_bashrc | ||
source ~/.bashrc | ||
all: git nvim fish | ||
|
||
git: | ||
cp git/_gitconfig ~/.gitconfig | ||
|
||
vim: | ||
cp vim/_vimrc ~/.vimrc | ||
|
||
zsh: | ||
cp zsh/.zshrc ~/.zshrc | ||
mkdir -p ~/.config/backup && mv ~/.config/git ~/.config/backup/git.$(shell date +%Y-%m-%d-%H%M%S) | ||
cp -rf git ~/.config/git | ||
|
||
nvim: | ||
cp nvim/init.vim ~/.config/nvim/init.vim | ||
mkdir -p ~/.config/backup && mv ~/.config/nvim ~/.config/backup/nvim.$(shell date +%Y-%m-%d-%H%M%S) | ||
cp -rf nvim ~/.config/nvim | ||
|
||
fish: | ||
mv ~/.config/fish ~/.config/fish.$(shell date +%s) | ||
cp -rf ~/dotfiles/fish ~/.config/fish | ||
mkdir -p ~/.config/backup && mv ~/.config/fish ~/.config/backup/fish.$(shell date +%Y-%m-%d-%H%M%S) | ||
cp -rf fish ~/.config/fish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ make | |
|
||
## build individually | ||
``` | ||
make vim | ||
make zsh | ||
make nvim | ||
make fish | ||
make git | ||
``` | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ set -g fish_user_paths "/usr/local/opt/[email protected]/bin" $fish_user_paths | |
# go | ||
# | ||
|
||
set -g -x GOROOT /usr/local/Cellar/go/1.9.1/libexec | ||
set -g -x GOROOT /usr/local/Cellar/go@1.8/1.8.4/libexec/ | ||
set -g -x GOPATH ~/primary/go | ||
set -g -x PATH $PATH $GOROOT/bin # go root binaries | ||
set -g -x PATH $PATH ~/primary/go/bin # go path binaries | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Vim | ||
*.swp | ||
|
||
# OSX's Desktop Services Store | ||
.DS_Store | ||
|
||
# Visual Studio Code | ||
.vscode | ||
|
||
# IDEA Plattform - IntelliJ, Goland | ||
.idea |
Oops, something went wrong.