Updated install for php + notes and fish config.

This commit is contained in:
Jason Hilder 2026-03-18 08:18:16 +02:00
parent 8805c7ef12
commit 940dbaff34
2 changed files with 15 additions and 10 deletions

View File

@ -24,11 +24,13 @@
# ``` # ```
# * Clone dotfiles # * Clone dotfiles
# * Install bob neovim manager [ curl -fsSL https://raw.githubusercontent.com/MordechaiHadad/bob/master/scripts/install.sh | bash ]
# * Install nerd font # * Install nerd font
# * Remove firefox for Brave # * Remove firefox for Brave
# * Setup gnome extensions # * Setup gnome extensions
# * [OPTIONAL]
# * Install steam # * Install steam
# * Install bob neovim manager [ curl -fsSL https://raw.githubusercontent.com/MordechaiHadad/bob/master/scripts/install.sh | bash ]
# * Install latest version of golang
# --------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------
## GLOBAL VARS ## GLOBAL VARS
# --------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------
@ -114,10 +116,11 @@ if [ "$DO_LINKS" = true ]; then
CREATED=0 CREATED=0
SKIPPED=0 SKIPPED=0
link_file "$DOTFILES_DIR/config/kanata" "$HOME/.config/kanata"
link_file "$DOTFILES_DIR/config/fish" "$HOME/.config/fish" link_file "$DOTFILES_DIR/config/fish" "$HOME/.config/fish"
link_file "$DOTFILES_DIR/config/foot" "$HOME/.config/foot" link_file "$DOTFILES_DIR/config/foot" "$HOME/.config/foot"
link_file "$DOTFILES_DIR/config/kanata" "$HOME/.config/kanata"
link_file "$DOTFILES_DIR/config/nvim" "$HOME/.config/nvim" link_file "$DOTFILES_DIR/config/nvim" "$HOME/.config/nvim"
link_file "$DOTFILES_DIR/config/zed" "$HOME/.config/zed"
link_file "$DOTFILES_DIR/config/gitu" "$HOME/.config/gitu" link_file "$DOTFILES_DIR/config/gitu" "$HOME/.config/gitu"
link_file "$DOTFILES_DIR/config/gtk3/gtk.css" "$HOME/.config/gtk-3.0/gtk.css" link_file "$DOTFILES_DIR/config/gtk3/gtk.css" "$HOME/.config/gtk-3.0/gtk.css"
link_file "$DOTFILES_DIR/config/gtk4/gtk.css" "$HOME/.config/gtk-4.0/gtk.css" link_file "$DOTFILES_DIR/config/gtk4/gtk.css" "$HOME/.config/gtk-4.0/gtk.css"
@ -146,9 +149,12 @@ fi
if [ "$DO_INSTALL" = true ]; then if [ "$DO_INSTALL" = true ]; then
REQUIRED_PACKAGES=( REQUIRED_PACKAGES=(
# system essentials # system essentials
wget curl git wget curl git unzip
fzf fd-find btop direnv ripgrep tree fzf fd-find btop direnv ripgrep tree
build-essential make bear valgrind fish build-essential make bear valgrind fish
# php dependencies
composer php-cli php-common php-curl
php-mbstring php-xml php-zip php-gd php-sqlite3
) )
MISSING_PACKAGES=() MISSING_PACKAGES=()
@ -181,4 +187,3 @@ if [ "$DO_INSTALL" = true ]; then
echo "✅ Package setup complete." echo "✅ Package setup complete."
echo "" echo ""
fi fi