mirror of
https://github.com/nix-community/nixvim.git
synced 2026-09-03 02:34:59 -05:00
9 lines
258 B
Bash
Executable File
9 lines
258 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Creates a container and then runs the resulting neovim executable with the configuration
|
|
set -e
|
|
|
|
sudo nixos-container destroy nvim-test
|
|
sudo nixos-container create nvim-test --flake .
|
|
|
|
.tmp/sw/bin/nvim -u .tmp/etc/xdg/nvim/sysinit.vim $@
|