.config directory does not exists after upgrade to Catalina
Solution 1:
.config starts with a dot, so it is hidden by default, and ls won’t show hidden files unless you ask it to with the -a
option.
- Use
ls -a
to list all files/folders including hidden ones. - Try
ls -a ~/.config
to specifically list the folder you’re looking for. - Create the folder if it doesn’t exist with
mkdir ~/.config
.