Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file modified CONTRIBUTING.md
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
26 changes: 26 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Maintainer: @slipstream8125 <slipstream8125@proton.me>
pkgname=stratvim-config
pkgver=1.0
pkgrel=1
pkgdesc="Neovim configuration for StratOS"
arch=('any')
license=('GPL3')
depends=(
'neovim'
'ttf-jetbrains-mono'
'ttf-jetbrains-mono-nerd'
)
source=()
install=stratvim.install
optdepends=(
'neovide: Graphical Neovim client'
'gdb: standard Linux debugger'
)
prepare() {
cp -r "$startdir/.config/" "$srcdir/"
}

package() {
install -d "$pkgdir/etc/skel/.config"
cp -r "$srcdir/.config/nvim/" "$pkgdir/etc/skel/.config/"
}
Empty file modified README.md
100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions stratvim.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
post_install() {
echo "==> StratVim has been installed to /etc/skel/.config/nvim"
echo "==> To use it, copy it to your home directory:"
echo " cp -r /etc/skel/.config/nvim ~/.config/"
}