summaryrefslogtreecommitdiff
path: root/default-config.json
blob: 461652156ec7fd3a97d28a6a80c9681e590fd52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "system_update_cmds":  {
      "arch": "pacman -Sy --needed archlinux-keyring && pacman -Su",
      "debian": "apt update && apt upgrade",
      "fedora": "dnf upgrade"
  },
  "extra_cmds": {
      "arch": "aur sync --upgrades --rmdeps --sign --remove --verify"
  },
  "clean_cmds": {
      "arch": "pacman -Rns $(pacman -Qdtq); exit 0",
      "debian": "apt-get --purge autoremove",
      "fedora": "dnf autoremove"
  },
  "shell_plugin_cmds": {
      "fish": "fisher update",
      "zsh": "source $HOME/.config/zsh/.antidote/antidote.zsh && antidote update"
  },
  "other_cmds": {
        "neovim": "nvim --headless -c 'autocmd User PackerComplete quitall' -c 'PackerSync'"
  }
}