This package is meant to encompass what an average developer would want from a postmarketOS image. We plan to provide -dev variants of some postmarketOS images for some devices for use by the Linux mobile developer community. These should include useful tools out of the box and provide a familiar shell and coreutils. Signed-off-by: Caleb Connolly <caleb@postmarketos.org> [ci:skip-build]: already built successfully in CI
7 lines
135 B
Bash
7 lines
135 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -e /usr/local/bin/vim ]; then
|
|
echo "Installing vim -> neovim symlink..."
|
|
ln -s /usr/bin/nvim /usr/local/bin/vim
|
|
fi
|