]> git.r.bdr.sh - rbdr/dotfiles/blobdiff - install_dotfiles
Add essential provisioning
[rbdr/dotfiles] / install_dotfiles
index 9b0f93b9a45057ef5dd724c2d8c7b9602e948376..b4fa7f8e8989a394bf0321a1b350f36c4b3d4d3e 100755 (executable)
@@ -1,32 +1,71 @@
 #!/usr/bin/env sh
 
 #!/usr/bin/env sh
 
+echo "Installing essential software"
+
+if command -v brew &>  /dev/null; then
+  cat ./provisioning/brew_essential | xargs brew install
+else
+  if command -v apt &>  /dev/null; then
+    echo "Warning: ASDF needs to be installed manually"
+    cat ./provisioning/apt_essential | xargs apt install
+  else
+    echo "Error: No valid package manager. Make sure brew or apt are available."
+    exit 1
+  fi
+fi
+
 echo "Linking runcoms"
 
 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
+# hush login
+ln -fns .dotfiles/hushlogin ~/.hushlogin
+
+# zsh runcoms
+ln -fns .dotfiles/runcoms/zshrc ~/.zshrc
+ln -fns .dotfiles/runcoms/zshenv ~/.zshenv
+ln -fns .dotfiles/runcoms/zprofile ~/.zprofile
+ln -fns .dotfiles/runcoms/zlogout ~/.zlogout
+ln -fns .dotfiles/runcoms/zlogin ~/.zlogin
 
 # Weechat
 
 # Weechat
-ln -s .dotfiles/weechat ~/.weechat
+ln -fns .dotfiles/weechat ~/.weechat
 
 # VIM
 
 # VIM
-ln -s .dotfiles/vim ~/.vim
-ln -s .dotfiles/vimrc ~/.vimrc
+ln -fns .dotfiles/vim ~/.vim
+ln -fns .dotfiles/vimrc ~/.vimrc
 
 # TMUX
 
 # TMUX
-ln -s .dotfiles/tmux.conf ~/.tmux.conf
+ln -fns .dotfiles/tmux.conf ~/.tmux.conf
 
 # Nethack
 
 # Nethack
-ln -s .dotfiles/nethackrc ~/.nethackrc
+ln -fns .dotfiles/nethackrc ~/.nethackrc
 
 # Git
 
 # Git
-ln -s .dotfiles/gitconfig ~/.gitconfig
+ln -fns .dotfiles/gitconfig ~/.gitconfig
 
 # Ctags
 
 # Ctags
-ln -s .dotfiles/ctags.d ~/.ctags.d
+ln -fns .dotfiles/ctags.d ~/.ctags.d
+
+# XDefaults
+ln -fns .dotfiles/XDefaults ~/.XDefaults
+
+# ripgrep
+ln -fns .dotfiles/rgignore ~/.rgignore
+
+# tmuxp
+ln -fns .dotfiles/tmuxp ~/.tmuxp
+
+# config dir
+mkdir -p ~/.config
+
+# kitty
+ln -fns ../.dotfiles/config/kitty ~/.config/kitty
+
+# nvim
+ln -fns ../.dotfiles/config/nvim ~/.config/nvim
+
+# config
+ln -fns ../.dotfiles/config/karabiner ~/.config/karabiner
 
 
+# Italics setup
 echo "Setting up terminfo"
 tic xterm-256color-italic.terminfo
 echo "Setting up terminfo"
 tic xterm-256color-italic.terminfo