From 029ba64f2d1fe61ecf57dc0e29816e9f726e7c47 Mon Sep 17 00:00:00 2001 From: John Mertz Date: Sun, 9 Apr 2023 21:13:54 -0400 Subject: [PATCH] Ditch Neovide and just use Neovim in terminal --- bash/bash_aliases | 2 +- bash/bash_aliases.host | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bash/bash_aliases b/bash/bash_aliases index 99410cb9b..c692bef94 100644 --- a/bash/bash_aliases +++ b/bash/bash_aliases @@ -1,7 +1,7 @@ # vim: ft=sh # Vim stuff -alias vim="neovide" +alias vim="nvim" alias :q="exit" alias :wq="exit" alias q="exit" diff --git a/bash/bash_aliases.host b/bash/bash_aliases.host index 40acd3f99..a7a973712 100644 --- a/bash/bash_aliases.host +++ b/bash/bash_aliases.host @@ -2,3 +2,7 @@ # Script to restore toolbox after it was replaced with distrobox and removed the default 'toolbox' name alias toolbox="$HOME/scripts/toolbox.sh" +alias butane='podman run --rm --interactive \ + --security-opt label=disable \ + --volume ${PWD}:/pwd --workdir /pwd \ + quay.io/coreos/butane:release'