diff --git a/config.json b/config.json index bf03eac..47b017e 100644 --- a/config.json +++ b/config.json @@ -66,13 +66,26 @@ } ], "linux-dev": [ - "git", - "htop", - "zsh", - "tmux", + { + "package": "git", + "install": "sudo apt install -y git" + }, + { + "package": "htop", + "install": "sudo apt install -y htop" + }, + { + "package": "zsh", + "install": "sudo apt install -y zsh", + "post-link": "./scripts/linux-setup_zsh.sh" + }, + { + "package": "tmux", + "install": "sudo apt install -y tmux" + }, { "package": "nvim", - "ignore-template": true, + "ignore-template": true, "link": { "from": "linux-dev/nvim", "to": "~/.config/nvim" }, "post-link": "nvim --headless '+Lazy! restore' '+MasonUpdate' +qa && echo 'alias vim=nvim' >> ~/.zshrc" }