Skip to content

Commit c33162a

Browse files
authored
Add neovim.yaml recipe (#565)
1 parent bd9684f commit c33162a

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

recipes/neovim.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)