Hi guys! Quick Q. What YAML editor do you recommend for macOS? VI works good but . . .

Victor Pacheco:
Hi guys! Quick Q. What YAML editor do you recommend for macOS? VI works good but looking for something that will catch syntax errors and free:blush:

Matthew Robinson:
Don’t forget, in the CKA/CKAD/CKS exams you won’t have access to a fancy editor so you need to know vi. I used the following .vimrc to make YAML editing easier.
set ts=2
set sts=2
set sw=2
filetype off
filetype plugin indent on
syntax on
set expandtab