Compare commits

..

No commits in common. "257998831d79feb94456ba61f1776808e6200796" and "596539adc3ce2246b3a157077b521acfffe0420e" have entirely different histories.

4 changed files with 3 additions and 30 deletions

12
copy.sh
View File

@ -2,7 +2,6 @@
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
FAKE_HOME="$SCRIPT_DIR/fake_home"
export f="$FAKE_HOME"
if ! command -v wget &> /dev/null; then
echo "wget must be installed!"
@ -29,14 +28,9 @@ echo "$dotfiles" | while read -r dotfile; do
ln -sf "$dotfile" "$new"
done
function add-export {
if ! grep "$1" "$HOME/.zsh_local"; then
echo "$1\"$2\"" >> "$HOME/.zsh_local"
fi
}
add-export "export DOT_DIR=" "$SCRIPT_DIR"
add-export "export f=" "$FAKE_HOME"
if ! grep DOT_DIR $HOME/.zsh_local; then
echo "export DOT_DIR=\"$SCRIPT_DIR\"" >> $HOME/.zsh_local
fi
if [[ "$1" == "--files-only" ]]; then
exit 0

View File

@ -1,5 +0,0 @@
class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}

View File

@ -1,14 +0,0 @@
# Heading 1
Aut impedit numquam quasi libero accusantium. Explicabo error rem vel eius
sequi quam omnis. Officia est molestias nemo asperiores deleniti omnis atque.
Provident facere itaque ut culpa sapiente sit assumenda.
## Heading 2
* This
* Is
* A
* List
[This is a link](butyouknewthat.com)

View File

@ -164,9 +164,7 @@ if has ("autocmd")
autocmd BufNewFile *.sh 0r ~/.vim/templates/skeleton.sh
autocmd BufNewFile *.py 0r ~/.vim/templates/skeleton.py
autocmd BufNewFile *.rb 0r ~/.vim/templates/skeleton.rb
autocmd BufNewFile *.md 0r ~/.vim/templates/skeleton.md
autocmd BufNewFile *.html 0r ~/.vim/templates/skeleton.html
autocmd BufNewFile *.java 0r ~/.vim/templates/skeleton.java
autocmd BufNewFile Makefile 0r ~/.vim/templates/Makefile
augroup END
endif