From 34800b66654eaf8bb1e9228360fe22c7a8af34a8 Mon Sep 17 00:00:00 2001 From: LER0ever Date: Thu, 15 Jun 2017 18:46:59 +0800 Subject: [PATCH] terminal: add support for Neovim terminal emulator --- neofetch | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neofetch b/neofetch index cdbd2897..3b29e2cf 100755 --- a/neofetch +++ b/neofetch @@ -1669,6 +1669,8 @@ get_term() { "login"* | *"Login"* | "init" | "(init)") term="$(tty)" ;; "ruby" | "1" | "systemd" | "sshd"* | "python"* | "USER"*"PID"*) break ;; "gnome-terminal-") term="gnome-terminal" ;; + *"nvim") term="Neovim Terminal" ;; + *"NeoVimServer"*) term="VimR Terminal" ;; *) term="${name##*/}" ;; esac fi