Compare commits
2 Commits
596539adc3
...
257998831d
Author | SHA1 | Date |
---|---|---|
Sage Vaillancourt | 257998831d | |
Sage Vaillancourt | 3e695e5c65 |
10
copy.sh
10
copy.sh
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
FAKE_HOME="$SCRIPT_DIR/fake_home"
|
FAKE_HOME="$SCRIPT_DIR/fake_home"
|
||||||
|
export f="$FAKE_HOME"
|
||||||
|
|
||||||
if ! command -v wget &> /dev/null; then
|
if ! command -v wget &> /dev/null; then
|
||||||
echo "wget must be installed!"
|
echo "wget must be installed!"
|
||||||
|
@ -28,9 +29,14 @@ echo "$dotfiles" | while read -r dotfile; do
|
||||||
ln -sf "$dotfile" "$new"
|
ln -sf "$dotfile" "$new"
|
||||||
done
|
done
|
||||||
|
|
||||||
if ! grep DOT_DIR $HOME/.zsh_local; then
|
function add-export {
|
||||||
echo "export DOT_DIR=\"$SCRIPT_DIR\"" >> $HOME/.zsh_local
|
if ! grep "$1" "$HOME/.zsh_local"; then
|
||||||
|
echo "$1\"$2\"" >> "$HOME/.zsh_local"
|
||||||
fi
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
add-export "export DOT_DIR=" "$SCRIPT_DIR"
|
||||||
|
add-export "export f=" "$FAKE_HOME"
|
||||||
|
|
||||||
if [[ "$1" == "--files-only" ]]; then
|
if [[ "$1" == "--files-only" ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
class Main {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("Hello, World!");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
# 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)
|
|
@ -164,7 +164,9 @@ if has ("autocmd")
|
||||||
autocmd BufNewFile *.sh 0r ~/.vim/templates/skeleton.sh
|
autocmd BufNewFile *.sh 0r ~/.vim/templates/skeleton.sh
|
||||||
autocmd BufNewFile *.py 0r ~/.vim/templates/skeleton.py
|
autocmd BufNewFile *.py 0r ~/.vim/templates/skeleton.py
|
||||||
autocmd BufNewFile *.rb 0r ~/.vim/templates/skeleton.rb
|
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 *.html 0r ~/.vim/templates/skeleton.html
|
||||||
|
autocmd BufNewFile *.java 0r ~/.vim/templates/skeleton.java
|
||||||
autocmd BufNewFile Makefile 0r ~/.vim/templates/Makefile
|
autocmd BufNewFile Makefile 0r ~/.vim/templates/Makefile
|
||||||
augroup END
|
augroup END
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue