Setup

brew install hugo

Create site

hugo new site name-of-site -f yml

Add theme

git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod
git submodule update --init --recursive # needed when you reclone your repo (submodules may not get cloned automatically)

Using HTML in .md files?

use the following in config.yml

markup:
  goldmark:
    renderer:
      unsafe: true

Create Posts

hugo new posts/nameOfPost.md

Deploy @ localhost (development)

hugo server

Sources