The ability to hide the folder with attachments

You can hide it with a simple CSS snippet:

div[data-path='attachments'], 
div[data-path='attachments'] + div.nav-folder-children 
{
    display: none;
}

(replace ‘attachments’ by the actual name of your folder)

8 Likes