diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-02-19 08:56:44 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-02-19 08:56:44 +0100 |
| commit | 8c7cbd3278fa27041ac5285bae1bfb45cee10046 (patch) | |
| tree | 7d6c269089a64fe22e40a0b25de4e4ee9998ffeb | |
| parent | d2cf7ebb63d485229e8fe295de5cf5e01aef7096 (diff) | |
Avoid noise / nesting dirs
| -rwxr-xr-x | install_dotfiles | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/install_dotfiles b/install_dotfiles index 9b0f93b..06bd7fb 100755 --- a/install_dotfiles +++ b/install_dotfiles @@ -3,30 +3,31 @@ echo "Linking runcoms" # ZSH runcoms -ln -s .dotfiles/runcoms/zshrc ~/.zshrc -ln -s .dotfiles/runcoms/zshenv ~/.zshenv -ln -s .dotfiles/runcoms/zprofile ~/.zprofile -ln -s .dotfiles/runcoms/zlogout ~/.zlogout -ln -s .dotfiles/runcoms/zlogin ~/.zlogin +ln -fhs .dotfiles/runcoms/zshrc ~/.zshrc +ln -fhs .dotfiles/runcoms/zshenv ~/.zshenv +ln -fhs .dotfiles/runcoms/zprofile ~/.zprofile +ln -fhs .dotfiles/runcoms/zlogout ~/.zlogout +ln -fhs .dotfiles/runcoms/zlogin ~/.zlogin # Weechat -ln -s .dotfiles/weechat ~/.weechat +ln -fhs .dotfiles/weechat ~/.weechat # VIM -ln -s .dotfiles/vim ~/.vim -ln -s .dotfiles/vimrc ~/.vimrc +ln -fhs .dotfiles/vim ~/.vim +ln -fhs .dotfiles/vimrc ~/.vimrc # TMUX -ln -s .dotfiles/tmux.conf ~/.tmux.conf +ln -fhs .dotfiles/tmux.conf ~/.tmux.conf # Nethack -ln -s .dotfiles/nethackrc ~/.nethackrc +ln -fhs .dotfiles/nethackrc ~/.nethackrc # Git -ln -s .dotfiles/gitconfig ~/.gitconfig +ln -fhs .dotfiles/gitconfig ~/.gitconfig # Ctags -ln -s .dotfiles/ctags.d ~/.ctags.d +ln -fhs .dotfiles/ctags.d ~/.ctags.d +# Italics setup echo "Setting up terminfo" tic xterm-256color-italic.terminfo |