diff --git a/Brewfile b/Brewfile index 6c1d38a..11e9bd1 100644 --- a/Brewfile +++ b/Brewfile @@ -92,3 +92,5 @@ brew "diff-so-fancy" brew "ncdu" # add tldr alternative to help brew "tldr" +# add pandoc +brew "pandoc" diff --git a/centos.sh b/centos.sh index 890b96b..8b29840 100644 --- a/centos.sh +++ b/centos.sh @@ -208,3 +208,6 @@ yum -y install ncdu # Install tldr alternative to help curl https://raw.githubusercontent.com/raylee/tldr/master/tldr > /usr/local/bin/tldr && chmod +x /usr/local/bin/tldr + +# Add pandoc +yum -y install pandoc diff --git a/dot_zsh_aliases b/dot_zsh_aliases index b50b9c5..3d1206f 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -52,6 +52,8 @@ alias mailpro="gmail" # Viewing files alias cat='bat --style=plain --color "always"' alias preview="fzf --preview 'bat --color \"always\" --style=plain {}'" +alias markdown='pandoc README.md | lynx -stdin -dump' + # To do / Done #alias done='task_done'