forked from colonelpanic/dotfiles
Fixing a bunch of stuff up. Install is cleaner now.
This commit is contained in:
parent
b3d5da867d
commit
b11b38620b
29
.zshrc
Normal file
29
.zshrc
Normal file
@ -0,0 +1,29 @@
|
||||
# Path to your oh-my-zsh configuration.
|
||||
ZSH=$HOME/.oh-my-zsh
|
||||
|
||||
# Customize to your needs...
|
||||
for file in ~/.{path,exports,prompt,aliases,functions,extra}; do
|
||||
[ -r "$file" ] && source "$file"
|
||||
done
|
||||
|
||||
ZSH_THEME="fino"
|
||||
|
||||
# Set to this to use case-sensitive completion
|
||||
CASE_SENSITIVE="true"
|
||||
|
||||
# Comment this out to disable bi-weekly auto-update checks
|
||||
DISABLE_AUTO_UPDATE="true"
|
||||
|
||||
plugins=(git github heroku)
|
||||
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
unset file
|
||||
|
||||
# COMPLETION SETTINGS
|
||||
# add custom completion scripts
|
||||
fpath=(~/.completions $fpath)
|
||||
|
||||
# compsys initialization
|
||||
autoload -U compinit
|
||||
compinit
|
@ -1,8 +1,13 @@
|
||||
#!/bin/bash
|
||||
cd "$(dirname "${BASH_SOURCE}")"
|
||||
function doIt() {
|
||||
rsync --exclude "Monaco-Powerline.otf" --exclude "oh-my-zsh" --exclude "tmux-powerline" --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" --exclude "README.md" --exclude "setup.sh" -av . ~
|
||||
rsync --exclude "setup.sh" --exclude "Monaco-Powerline.otf" --exclude "web_start.sh" \
|
||||
--exclude "oh-my-zsh" --exclude "tmux-powerline" --exclude ".git/" \
|
||||
--exclude ".DS_Store" --exclude "bootstrap.sh" --exclude "README.md" \
|
||||
--exclude "requirements.txt" --exclude "more_python.txt" \
|
||||
-av . ~
|
||||
}
|
||||
|
||||
if [ "$1" == "--force" -o "$1" == "-f" ]; then
|
||||
doIt
|
||||
else
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 13c54cef7a68b7c66c813a1775ded352da0059e4
|
||||
Subproject commit ac9588ba3c8b361b11ce969a676a737298a2295f
|
Loading…
Reference in New Issue
Block a user