blob: ecf584140baf5910eca8ef814a85f43d378a52eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit vim-plugin git-r3
DESCRIPTION="A vim plugin for CSV and TSV highlighting and running queries"
HOMEPAGE="https://github.com/mechatroner/rainbow_csv"
EGIT_REPO_URI="https://github.com/mechatroner/rainbow_csv.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
RDEPEND="
app-editors/vim
"
src_install() {
vim-plugin_src_install
}
|