Compare commits

...

2 Commits

Author SHA1 Message Date
Nina Chloé Kassandra Reiss 468dac7c0d Add basic runthrough test workflow
Dummy workflow to run everything once. No further testing. / build (push) Has been cancelled Details
2025-02-03 08:44:58 +00:00
Nina Chloé Kassandra Reiss 262486cae8 Add plugin file 2025-02-03 08:44:47 +00:00
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,28 @@
name: Dummy workflow to run everything once. No further testing.
on: [push]
jobs:
build:
runs-on: archlinux
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Prepare system
run: |
pacman --noconfirm -Syyu
pacman --noconfirm -S neovim python-neovim git bash
- name: Position repository
run: |
cd ..
mkdir -p ~/.config
mv nvim ~/.config/nvim
cd ~/.config/nvim
chmod +x setup_nvim.sh
./setup_nvim.sh
- name: Run neovim in quiet mode
run: |
nvim -es

4
lua/plugin.lua Normal file
View File

@ -0,0 +1,4 @@
require "paq" {
'savq/paq-nvim',
'mhartington/formatter.nvim'
}