28 lines
659 B
Bash
28 lines
659 B
Bash
|
# Garuda-Team
|
||
|
# Contributor: Librewish <librewish@gmail.com>
|
||
|
|
||
|
pkgname=condor-zsh-config
|
||
|
pkgver=1.0.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Zsh configuration for Condor Linux"
|
||
|
arch=(any)
|
||
|
# url="https://gitlab.com/garuda-linux/themes-and-settings/settings/$pkgname"
|
||
|
license=('GPL')
|
||
|
conflicts=('grml-zsh-config' 'manjaro-zsh-config')
|
||
|
depends=('find-the-command-git'
|
||
|
'fzf'
|
||
|
'mcfly'
|
||
|
'ugrep'
|
||
|
'zsh'
|
||
|
'zsh-autosuggestions'
|
||
|
'zsh-completions'
|
||
|
'zsh-history-substring-search'
|
||
|
'zsh-syntax-highlighting')
|
||
|
makedepends=('git')
|
||
|
source=('zshrc')
|
||
|
sha256sums=('c0fa3e027fe752b55052909c2bf929094c1dc81854521abe5f69104a0370cd8e')
|
||
|
|
||
|
package() {
|
||
|
install -D -m644 zshrc "$pkgdir/etc/skel/.zshrc"
|
||
|
}
|