mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-04 15:07:23 +01:00
Merge branch 'master' of github.com:tomru/Dotfiles
This commit is contained in:
15
gitconfig
15
gitconfig
@@ -8,3 +8,18 @@
|
|||||||
status = auto
|
status = auto
|
||||||
[core]
|
[core]
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
[alias]
|
||||||
|
st = status
|
||||||
|
co = checkout
|
||||||
|
cm = commit
|
||||||
|
br = branch
|
||||||
|
llog = log --date=local
|
||||||
|
changes = diff --name-status -r
|
||||||
|
diffstat = diff --stat -r
|
||||||
|
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
|
||||||
|
[merge]
|
||||||
|
tool = bc3
|
||||||
|
[mergetool]
|
||||||
|
cmd = /usr/bin/bcompare $LOCAL $REMOTE $BASE $MERGED
|
||||||
|
[push]
|
||||||
|
default = current
|
||||||
|
|||||||
Submodule oh-my-zsh updated: c443926e28...8128a5b89f
@@ -1 +1,4 @@
|
|||||||
git
|
git
|
||||||
|
npm
|
||||||
|
apt-get
|
||||||
|
apt-cache
|
||||||
|
|||||||
15
zshrc
15
zshrc
@@ -30,9 +30,14 @@ source $ZSH/oh-my-zsh.sh
|
|||||||
|
|
||||||
# Customize to your needs...
|
# Customize to your needs...
|
||||||
|
|
||||||
# use $HOME/local as default prefix for npm global installs
|
# set PATH so it includes user's private bin if it exists
|
||||||
HOME_LOCAL=$HOME/local
|
if [ -d "$HOME/bin" ] ; then
|
||||||
|
PATH="$HOME/bin:$PATH"
|
||||||
if [ -d "$HOME_LOCAL/bin" ] ; then
|
fi
|
||||||
PATH="$HOME_LOCAL/bin:$PATH"
|
|
||||||
|
# local node install
|
||||||
|
NODE_PATH="$HOME/local"
|
||||||
|
if [ -d $NODE_PATH ] ; then
|
||||||
|
PATH="$NODE_PATH/bin:$PATH"
|
||||||
|
export NODE_PATH
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user