-
Notifications
You must be signed in to change notification settings - Fork 14
/
freshrc
66 lines (53 loc) · 1.71 KB
/
freshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# vim: set ft=sh:
fresh freshshell/fresh bin/fresh --bin
fresh freshshell/fresh contrib/source-build.sh --file=~/.bash_profile
fresh freshshell/fresh contrib/source-build.sh --file=~/.bashrc
fresh shell/aliases/\*
fresh shell/functions/\*
fresh shell/config/\*
fresh shell/\*
fresh rupa/z z.sh
fresh freshshell/fresh contrib/completion/fresh-completion.bash
fresh bobthecow/git-flow-completion git-flow-completion.bash
fresh config/\* --file
fresh-options --file=~/.vimrc --marker=\"
fresh vim/leader.vim
fresh twe4ked/dotfiles vim/vundle_before.vim --ref=65a9353~
fresh vim/vundle.vim
fresh vim/plugins/\*.vim
fresh twe4ked/dotfiles vim/vundle_after.vim --ref=65a9353~
fresh vim/global.vim
fresh vim/config/\*.vim
fresh vim/functions.vim
fresh vim/mappings.vim
fresh vim/mappings/\*.vim
fresh vim/auto_commands.vim
fresh hackling/dotfiles vim/plugins/surround.vim
fresh-options
fresh vim/gvimrc --file
fresh vim/colors --file=~/.vim/colors/
init_vim() {
if which vim &> /dev/null && ! [ -d $HOME/.vim/bundle/vundle ]; then
vim || [ -d $HOME/.vim/bundle/vundle ]
fi
}
fresh bin/\* --bin
fresh bin/wemux/\* --bin
fresh twe4ked/dotfiles bin/heroku-remote-add --bin
fresh pengwynn/dotfiles bin/git-pr --bin
fresh bartman/git-wip git-wip --bin
fresh twe4ked/catacomb bin/catacomb --bin
fresh thenigan/git-diffall git-diffall --bin
if command -v podman &> /dev/null; then
fresh LaunchAgents/podman-machine.plist --file=~/Library/LaunchAgents/podman-machine.plist
fi
start_podman()
{
if [ -f ~/Library/LaunchAgents/podman-machine.plist ] && ! launchctl list podman-machine &> /dev/null; then
launchctl load ~/Library/LaunchAgents/podman-machine.plist
fi
}
fresh_after_build() {
init_vim
start_podman
}