We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd9684f commit c33162aCopy full SHA for c33162a
1 file changed
recipes/neovim.yml
@@ -0,0 +1,23 @@
1
+app: neovim
2
+union: true
3
+
4
+ingredients:
5
+ dist: focal
6
+ sources:
7
+ - deb http://us.archive.ubuntu.com/ubuntu/ focal main universe # works for amd64
8
+ - deb http://ports.ubuntu.com/ubuntu-ports/ focal main universe # works for arm64
9
10
+script:
11
+ - ls
12
+ - cat > neovim.desktop <<\EOF
13
+ - [Desktop Entry]
14
+ - Type=Application
15
+ - Name=neovim
16
+ - Exec=nvim
17
+ - Icon=neovim
18
+ - Categories=Development;TextEditor;
19
+ - Comment=Vim-fork focused on extensibility and usability
20
+ - EOF
21
+ - wget -c https://raw.githubusercontent.com/neovim/neovim.github.io/master/logos/neovim-logo-300x87.png -O neovim.png
22
+ - mkdir -p usr/share/icons/hicolor/256x256/apps/
23
+ - cp neovim.png usr/share/icons/hicolor/256x256/apps/neovim.png
0 commit comments