Skip to content

Commit adeb5d6

Browse files
author
daa84
committed
Update nvim to 0.3.0, add plug.vim to package
1 parent 22b26d5 commit adeb5d6

File tree

3 files changed

+33
-13
lines changed

3 files changed

+33
-13
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.flatpak-builder
2+
build
3+
nvim-gtk
4+
*.flatpak

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ After installation NeovimGtk can be found at application menu or can be run from
77
This package requires gnome platform:
88
```
99
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
10-
flatpak install flathub org.gnome.Platform//3.24
10+
flatpak install flathub org.gnome.Platform//3.28
1111
```
1212

1313
[![Github All Releases](https://img.shields.io/github/downloads/daa84/neovim-gtk-flatpak/total.svg)]()
@@ -16,4 +16,4 @@ flatpak install flathub org.gnome.Platform//3.24
1616
# NeovimGtk configuration
1717
nvim and nvim-gtk configuration files (`init.vim` `ginit.vim`) stored at `~/.var/app/org.daa.NeovimGtk/config/nvim/`.
1818
autoload configuration stored at `~/.var/app/org.daa.NeovimGtk/data/nvim/site/autoload`.
19-
This package contains also git to allow autoinstall of vim plugins. So you can just put `plug.vim` at autoload directory and start using it.
19+
This package contains also git and `plug.vim` to allow autoinstall of vim plugins.

org.daa.NeovimGtk.json

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"app-id": "org.daa.NeovimGtk",
33
"runtime": "org.gnome.Platform",
4-
"runtime-version": "3.24",
4+
"runtime-version": "3.28",
55
"sdk": "org.gnome.Sdk",
66
"sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"],
77
"command": "nvim-gtk",
@@ -60,8 +60,8 @@
6060
"sources": [
6161
{
6262
"type": "archive",
63-
"url": "https://github.com/msgpack/msgpack-c/archive/cpp-2.1.3.tar.gz",
64-
"sha256": "42ff5c213fd24bd4388c45c1f21d84b476678ce6366ea4d4f4086618a1d2cd23"
63+
"url": "https://github.com/msgpack/msgpack-c/releases/download/cpp-3.0.0/msgpack-3.0.0.tar.gz",
64+
"sha256": "bfbb71b7c02f806393bc3cbc491b40523b89e64f83860c58e3e54af47de176e4"
6565
}
6666
]
6767
},
@@ -77,8 +77,8 @@
7777
"sources": [
7878
{
7979
"type": "archive",
80-
"url": "https://github.com/LuaJIT/LuaJIT/archive/82151a4514e6538086f3f5e01cb8d4b22287b14f.tar.gz",
81-
"sha256": "8bc4e96ebab74e12ab84e751360e864714289bb089b51b6f396fa9a97df69798"
80+
"url": "https://github.com/LuaJIT/LuaJIT/archive/7dbf0b05f1228c1c719866db5e5f3d58f87f74c8.tar.gz",
81+
"sha256": "cbae019b5e396164eb5f0d07777b55cc03931bb944f83c61a010c053c9f5fd5b"
8282
}
8383
]
8484
},
@@ -137,8 +137,8 @@
137137
"sources": [
138138
{
139139
"type": "archive",
140-
"url": "https://github.com/luarocks/luarocks/archive/v2.4.2.tar.gz",
141-
"sha256": "eef88c2429c715a7beb921e4b1ba571dddb7c74a250fbb0d3cc0d4be7a5865d9"
140+
"url": "https://github.com/luarocks/luarocks/archive/v2.4.4.tar.gz",
141+
"sha256": "9eb3d0738fd02ad8bf39bcedccac4e83e9b5fff2bcca247c3584b925b2075d9c"
142142
}
143143
]
144144
},
@@ -151,7 +151,7 @@
151151
},
152152
"build-commands": [
153153
"luarocks build lpeg 1.0.1-1",
154-
"luarocks build mpack 1.0.6-0"
154+
"luarocks build mpack 1.0.7-0"
155155
]
156156
},
157157

@@ -166,7 +166,7 @@
166166
{
167167
"type": "git",
168168
"url": "https://github.com/neovim/neovim",
169-
"tag": "v0.2.2"
169+
"tag": "v0.3.0"
170170
}
171171
]
172172
},
@@ -188,12 +188,28 @@
188188
"sources": [
189189
{
190190
"type": "archive",
191-
"url": "https://www.kernel.org/pub/software/scm/git/git-2.14.2.tar.gz",
192-
"sha256": "a03a12331d4f9b0f71733db9f47e1232d4ddce00e7f2a6e20f6ec9a19ce5ff61"
191+
"url": "https://www.kernel.org/pub/software/scm/git/git-2.18.0.tar.gz",
192+
"sha256": "94faf2c0b02a7920b0b46f4961d8e9cad08e81418614102898a55f980fa3e7e4"
193193
}
194194
]
195195
},
196196

197+
{
198+
"name": "vim-plug",
199+
"buildsystem": "simple",
200+
"build-commands": [
201+
"mkdir -p /app/share/nvim/site/autoload",
202+
"cp plug.vim /app/share/nvim/site/autoload/"
203+
],
204+
"sources": [
205+
{
206+
"type": "git",
207+
"url": "https://github.com/junegunn/vim-plug",
208+
"commit": "e0ca037a4fe6d3b2d0b85ceec9b69670cc9db2bc"
209+
}
210+
]
211+
},
212+
197213
{
198214
"name": "neovim-gtk",
199215
"build-options": {

0 commit comments

Comments
 (0)