Compare commits

..

No commits in common. "07f72ace6a2269bdcefde716e5cf6edca60e2d6a" and "275295c9b2e406ebdd13179b167f4b536e4c3eb0" have entirely different histories.

3 changed files with 51 additions and 51 deletions

View File

@ -2,7 +2,7 @@
Version=1.0
Name=FIREFOX
Exec=/usr/bin/env firefox %U
Icon=~/.local/firefox/browser/chrome/icons/default/default128.png
Icon=firefox
Terminal=false
Type=Application
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;

View File

@ -867,12 +867,12 @@ ssh-verify-file() {
if hash nvim 2>/dev/null; then
vim() {
echo 'using nvim instead'
/usr/bin/env nvim "$@"
nvim "$@"
}
else
vim() {
echo 'nvim not found'
/usr/bin/env vim "$@"
\vim "$@"
}
fi

View File

@ -861,12 +861,12 @@ ssh-verify-file () {
if hash nvim 2>/dev/null; then
vim() {
echo 'using nvim instead'
/usr/bin/env nvim "$@"
nvim "$@"
}
else
vim() {
echo 'nvim not found'
/usr/bin/env vim "$@"
\vim "$@"
}
fi