Like
@wizardfromoz already asked, do you mean $HOME/{Pictures,Documents,Music,Videos..etc}? I think there are two solutions easiest for you, you can either not change the default and add the other locations under /data in your file manager(nautilus). Which you can do by click to the location of choice in your filemanager.
For example say you want to add /data/Pictures:
1. Open your file manager
2. Click on Other locations.
3 Click on data
4. Select Pictures and then drag under the location where Trash is, not exactly under Trash but just below the separator line since that's where the Favorite folder locations are stored. Then it will be added and then when you quickly want to open that location you can just click on the shortcut.
Or you can change it in your user settings which is this file:
$HOME/.config/user-dirs.dirs and it contains these lines.
Code:
XDG_DESKTOP_DIR="$HOME/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/Templates"
XDG_PUBLICSHARE_DIR="$HOME/Public"
XDG_DOCUMENTS_DIR="$HOME/Documents"
XDG_MUSIC_DIR="$HOME/Music"
XDG_PICTURES_DIR="$HOME/Pictures"
XDG_VIDEOS_DIR="$HOME/Videos"
You can then edit it to look like this.
Code:
XDG_DESKTOP_DIR="/data/Desktop"
XDG_DOWNLOAD_DIR="/data/Downloads"
XDG_TEMPLATES_DIR="/data/Templates"
XDG_PUBLICSHARE_DIR="/data/Public"
XDG_DOCUMENTS_DIR="/data/Documents"
XDG_MUSIC_DIR="/data/Music"
XDG_PICTURES_DIR="/data/Pictures"
XDG_VIDEOS_DIR="/data/Videos"
Instead of using /data you can also make make it /data/$USERNAME/{Desktop,Downloads,Templates, Public,Documents,Music,Pictures,Videos} or however it fits your directory structure on /data.