update config linux-dev

This commit is contained in:
2025-02-24 19:03:39 +00:00
parent 3bd842553a
commit 3f813914d4

View File

@@ -66,13 +66,26 @@
} }
], ],
"linux-dev": [ "linux-dev": [
"git", {
"htop", "package": "git",
"zsh", "install": "sudo apt install -y git"
"tmux", },
{
"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", "package": "nvim",
"ignore-template": true, "ignore-template": true,
"link": { "from": "linux-dev/nvim", "to": "~/.config/nvim" }, "link": { "from": "linux-dev/nvim", "to": "~/.config/nvim" },
"post-link": "nvim --headless '+Lazy! restore' '+MasonUpdate' +qa && echo 'alias vim=nvim' >> ~/.zshrc" "post-link": "nvim --headless '+Lazy! restore' '+MasonUpdate' +qa && echo 'alias vim=nvim' >> ~/.zshrc"
} }