From c33162ac5ff60374f442204b8e0f470e35fe9a77 Mon Sep 17 00:00:00 2001 From: Bernhard Suttner Date: Mon, 27 Jan 2025 22:42:38 +0100 Subject: [PATCH] Add neovim.yaml recipe (#565) --- recipes/neovim.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 recipes/neovim.yml diff --git a/recipes/neovim.yml b/recipes/neovim.yml new file mode 100644 index 00000000..43ac4424 --- /dev/null +++ b/recipes/neovim.yml @@ -0,0 +1,23 @@ +app: neovim +union: true + +ingredients: + dist: focal + sources: + - deb http://us.archive.ubuntu.com/ubuntu/ focal main universe # works for amd64 + - deb http://ports.ubuntu.com/ubuntu-ports/ focal main universe # works for arm64 + +script: + - ls + - cat > neovim.desktop <<\EOF + - [Desktop Entry] + - Type=Application + - Name=neovim + - Exec=nvim + - Icon=neovim + - Categories=Development;TextEditor; + - Comment=Vim-fork focused on extensibility and usability + - EOF + - wget -c https://raw.githubusercontent.com/neovim/neovim.github.io/master/logos/neovim-logo-300x87.png -O neovim.png + - mkdir -p usr/share/icons/hicolor/256x256/apps/ + - cp neovim.png usr/share/icons/hicolor/256x256/apps/neovim.png