Adding zsh config

This commit is contained in:
Debucquoy Anthony 2023-04-12 10:19:13 +02:00
parent 091ef5ab9e
commit 9004605483
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

16
zshrc/PKGBUILD Normal file
View File

@ -0,0 +1,16 @@
# Maintainer: Debucquoy Anthony <Debucquoy.anthony@gmail.com>
pkgname=zsh-config-tonitch
pkgver=1
pkgrel=1
pkgdesc="Config for tonitch's zsh"
arch=(x86_64)
license=('unknown')
depends=('zsh' 'zsh-autosuggestions' 'zsh-history-substring-search' 'zsh-syntax-highlighting' 'zsh-vi-mode')
optdepends=('zsh-lovers')
source=("https://raw.githubusercontent.com/tonitch/dotfiles/master/.zshrc")
sha256sums=('705475f42e0744abe7b6c6bda42178776b58a76fc7fab4be0b60b42dfa08873e')
package() {
cd "$srcdir"
install -Dm644 .zshrc ${pkgdir}/etc/zsh/zshrc
}