9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
exec docker run \
|
||
|
--rm \
|
||
|
-it \
|
||
|
--name neovim-config \
|
||
|
-v "$PWD":/root/.config/nvim \
|
||
|
archlinux:latest
|