diff --git a/home/.bashrc b/home/.bashrc index 6615b7c..a0e12b5 100644 --- a/home/.bashrc +++ b/home/.bashrc @@ -40,6 +40,10 @@ fi # Include more scripts if [ -f /etc/bash_completion ]; then source /etc/bash_completion; fi -if [ -f ~/.bash_aliases ]; then source ~/.bash_aliases; fi -if [ -f ~/.bash_env ]; then source ~/.bash_env; fi -if [ -f ~/.bash_prompt ]; then source ~/.bash_prompt; fi + +source ~/.bash_aliases +source ~/.bash_env +source ~/.bash_prompt + +source ~/.homesick/repos/homeshick/homeshick.sh +source ~/.homesick/repos/homeshick/completions/homeshick-completion.bash diff --git a/home/.password-store b/home/.password-store new file mode 120000 index 0000000..dc3508d --- /dev/null +++ b/home/.password-store @@ -0,0 +1 @@ +../../pass/ \ No newline at end of file diff --git a/home/.vim/bundle/Airline b/home/.vim/bundle/Airline deleted file mode 160000 index cdc6d98..0000000 --- a/home/.vim/bundle/Airline +++ /dev/null @@ -1 +0,0 @@ -Subproject commit cdc6d98a09db60d3dda58815616f78338cbdaa9d diff --git a/home/.vim/bundle/GitGutter b/home/.vim/bundle/GitGutter deleted file mode 160000 index 2e98692..0000000 --- a/home/.vim/bundle/GitGutter +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2e98692278aa25413d36b1d32bf01c2442a42f51 diff --git a/home/.vim/bundle/NeoComplete b/home/.vim/bundle/NeoComplete deleted file mode 160000 index 70db83a..0000000 --- a/home/.vim/bundle/NeoComplete +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 70db83a47098312d6b51dae983bbb6974385c618 diff --git a/home/.vim/bundle/NeoSnippet b/home/.vim/bundle/NeoSnippet deleted file mode 160000 index 5faebde..0000000 --- a/home/.vim/bundle/NeoSnippet +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5faebdef65ce35501d6caac601cd871e377dfc9a diff --git a/home/.vim/bundle/Pride b/home/.vim/bundle/Pride deleted file mode 160000 index 25c470f..0000000 --- a/home/.vim/bundle/Pride +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 25c470f8e836b8075c2738942e58db85f07dfc98 diff --git a/home/.vim/bundle/Syntastic b/home/.vim/bundle/Syntastic deleted file mode 160000 index edde4c5..0000000 --- a/home/.vim/bundle/Syntastic +++ /dev/null @@ -1 +0,0 @@ -Subproject commit edde4c5ed5b1e1117a5f5277539bc7f6e982b2ec diff --git a/home/.vim/bundle/VimSnippets b/home/.vim/bundle/VimSnippets deleted file mode 160000 index 08fc834..0000000 --- a/home/.vim/bundle/VimSnippets +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 08fc83482b085bb49208363c8e319506afeeff5c diff --git a/home/.vim/bundle/airline b/home/.vim/bundle/airline new file mode 120000 index 0000000..8a530e6 --- /dev/null +++ b/home/.vim/bundle/airline @@ -0,0 +1 @@ +../../../../vim-airline/ \ No newline at end of file diff --git a/home/.vim/bundle/gitgutter b/home/.vim/bundle/gitgutter new file mode 120000 index 0000000..919580f --- /dev/null +++ b/home/.vim/bundle/gitgutter @@ -0,0 +1 @@ +../../../../vim-gitgutter/ \ No newline at end of file diff --git a/home/.vim/bundle/neocomplete b/home/.vim/bundle/neocomplete new file mode 120000 index 0000000..8dc0508 --- /dev/null +++ b/home/.vim/bundle/neocomplete @@ -0,0 +1 @@ +../../../../vim-neocomplete/ \ No newline at end of file diff --git a/home/.vim/bundle/neosnippet b/home/.vim/bundle/neosnippet new file mode 120000 index 0000000..ffaf556 --- /dev/null +++ b/home/.vim/bundle/neosnippet @@ -0,0 +1 @@ +../../../../vim-neosnippet/ \ No newline at end of file diff --git a/home/.vim/bundle/snippets b/home/.vim/bundle/snippets new file mode 120000 index 0000000..2e850fa --- /dev/null +++ b/home/.vim/bundle/snippets @@ -0,0 +1 @@ +../../../../vim-snippets/ \ No newline at end of file diff --git a/home/.vim/bundle/syntastic b/home/.vim/bundle/syntastic new file mode 120000 index 0000000..f403e29 --- /dev/null +++ b/home/.vim/bundle/syntastic @@ -0,0 +1 @@ +../../../../vim-syntastic/ \ No newline at end of file diff --git a/install.sh b/install.sh deleted file mode 100755 index ac15ea1..0000000 --- a/install.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -shopt -s extglob -shopt -s dotglob - -for file in !(.git|*.sh|*~|.|..); do - echo "install $file ..." - cp -r $file ~ -done