--- /dev/null
+From e378b1484a85399032ff32d86ad2a5bde936762f Mon Sep 17 00:00:00 2001
+From: adrian5 <adrian5@users.noreply.github.com>
+Date: Mon, 17 Feb 2020 22:13:50 +0100
+Subject: [PATCH] Add icmpv6 keyword
+
+---
+ syntax/nftables.vim | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/syntax/nftables.vim b/syntax/nftables.vim
+index c80eb9d..d5d0e3f 100644
+--- a/syntax/nftables.vim
++++ b/syntax/nftables.vim
+@@ -23,7 +23,7 @@ syn keyword Function table chain
+ syn keyword Statement type hook
+ syn keyword Type ip ip6 inet arp bridge
+ syn keyword Type filter nat route
+-syn keyword Type ether vlan arp ip ip6 tcp udp udplite sctp dccp ah esp ipcomp icmp
++syn keyword Type ether vlan arp ip ip6 tcp udp udplite sctp dccp ah esp ipcomp icmp icmpv6 igmp
+ syn keyword Type ct
+ syn keyword Type length protocol priority mark iif iifname iiftype oif oifname oiftype skuid skgid rtclassid
+ syn keyword Constant prerouting input forward output postrouting
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>chutzpah@gentoo.org</email>
+ <name>Patrick McLean</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>vim@gentoo.org</email>
+ </maintainer>
+</pkgmetadata>
--- /dev/null
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vim-plugin
+
+COMMIT_ID="aad8540ef56f495baa589f646edc1253db990f1a"
+
+DESCRIPTION="vim plugin: "
+HOMEPAGE="https://github.com/nfnty/vim-nftables"
+SRC_URI="https://github.com/nfnty/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT_ID}"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+
+PATCHES=(
+ "${FILESDIR}/vim-nftables-0_pre20200220-extra-keywords.patch"
+)
+
+src_prepare() {
+ default
+
+ # will install license file by default
+ rm LICENSE || die
+}