Ditch Neovide and just use Neovim in terminal
This commit is contained in:
parent
2ed1542dd3
commit
029ba64f2d
|
@ -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"
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue