blob: 5193d5610a3689d78ef65d8c154ab55a6122a256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 2024 Catppuccin
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Soothing pastel theme for Neovim"
HOMEPAGE="https://github.com/catppuccin/nvim"
SRC_URI="https://github.com/catppuccin/nvim/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/nvim-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="app-editors/neovim"
src_install() {
cd ./colors
mkdir --parents "${D}"/usr/share/nvim/runtime/colors
cp -r *.vim "${D}"/usr/share/nvim/runtime/colors
cd ..
cd ./lua
mkdir --parents "${D}"/usr/share/nvim/runtime/lua
cp -r ./* "${D}"/usr/share/nvim/runtime/lua
}
|