13 changed files with 1631 additions and 7 deletions
@ -1,15 +1,26 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
|
|
||||||
FILES="$HOME/.vim/colors/deus.vim \ |
DOT_FILES=" |
||||||
$HOME/.vim/after/syntax/cpp.vim \ |
$HOME/.profile \ |
||||||
$HOME/.vimrc \ |
|
||||||
$HOME/.bashrc \ |
$HOME/.bashrc \ |
||||||
$HOME/.tmux.conf \ |
$HOME/.tmux.conf \ |
||||||
$HOME/.profile \ |
$HOME/.ctags" |
||||||
$HOME/.gdbinit.d \ |
|
||||||
$HOME/.ctags \ |
VIM_FILES=" |
||||||
|
$HOME/.vim/colors/deus.vim \ |
||||||
|
$HOME/.vim/after/syntax/cpp.vim \ |
||||||
|
$HOME/.vimrc" |
||||||
|
|
||||||
|
GDB_FILES=" |
||||||
|
$HOME/.gdbinit |
||||||
|
$HOME/.gdbinit.d" |
||||||
|
|
||||||
|
BASH_SCRIPTS=" |
||||||
$HOME/bin/hide_panel.sh \ |
$HOME/bin/hide_panel.sh \ |
||||||
$HOME/bin/tmux_start.sh" |
$HOME/bin/tmux_start.sh" |
||||||
|
|
||||||
rsync -avP ${FILES} ./ |
rsync -avP ${DOT_FILES} ./dot |
||||||
|
rsync -avP ${VIM_FILES} ./vim |
||||||
|
rsync -avP ${GDB_FILES} ./gdb |
||||||
|
rsync -avP ${BASH_SCRIPTS} ./bash_scripts |
||||||
|
|
||||||
|
|||||||
Loading…
Reference in new issue