From cee4d479673cf2275ac5447667a3069e942dda8f Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Sun, 17 Nov 2024 21:48:38 -0800 Subject: [PATCH] Update container script to override detach keys This allows me to use ctrl-z to send nvim to the background --- docker/nvim-container.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/nvim-container.sh b/docker/nvim-container.sh index acea0aa..d844e40 100755 --- a/docker/nvim-container.sh +++ b/docker/nvim-container.sh @@ -9,6 +9,7 @@ if ! docker inspect "${container_name}-home" > /dev/null ; then fi docker run --interactive --rm --tty \ + --detach-keys "ctrl-z" \ --name "$container_name" \ --env "NVIM_COLOR=$NVIM_COLOR" \ --volume "${container_name}-home:/home/vividboarder/.data" \