Ditch Neovide and just use Neovim in terminal

This commit is contained in:
John Mertz 2023-04-09 21:13:54 -04:00
parent 2ed1542dd3
commit 029ba64f2d
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# vim: ft=sh # vim: ft=sh
# Vim stuff # Vim stuff
alias vim="neovide" alias vim="nvim"
alias :q="exit" alias :q="exit"
alias :wq="exit" alias :wq="exit"
alias q="exit" alias q="exit"

View File

@ -2,3 +2,7 @@
# Script to restore toolbox after it was replaced with distrobox and removed the default 'toolbox' name # Script to restore toolbox after it was replaced with distrobox and removed the default 'toolbox' name
alias toolbox="$HOME/scripts/toolbox.sh" 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'