Skip to content

Commit

Permalink
Update Versions.sh
Browse files Browse the repository at this point in the history
Highlighted MacVim version reporting with Underlined Autoload, Plugin, and Colors sections.
  • Loading branch information
iAGorynT committed Sep 1, 2024
1 parent a7d6b61 commit a2d7991
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ShellScripts/Versions.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/zsh

# Activate Function Library
source $HOME/ShellScripts/FunctionLib.sh

# Display Software Versions
clear
echo "Software Versions..."
Expand Down Expand Up @@ -28,11 +31,11 @@ echo
echo "MacVim:"
mver=$(mvim --version | grep -e 'VIM - Vi IMproved' -e 'Included patches')
echo "Version: $mver"
echo "Autoload..."
format_echo "Autoload" "std" 4
ls -1 ~/.vim/autoload
echo "Plugins..."
format_echo "Plugins" "std" 4
ls -1 ~/.vim/plugged
echo "Colors..."
format_echo "Colors" "std" 4
ls -1 ~/.vim/colors
echo

Expand Down

0 comments on commit a2d7991

Please sign in to comment.