Introducing the Obsidian Contacts Plugin! With this plugin, you can easily organize and manage your contacts within Obsidian. Simply create a note with contact information and use the plugin's features to quickly search, and sort through your contacts. Contacts plugin also helps you to remember birthdays of your contacts and keeps track of the last time you met them.
- Go to the
Settings
menu and selectCommunity Plugins
. - In the
Community Plugins
menu, disableSafe Mode
.
- From the
Community Plugins
menu, click onBrowse
. - Search for the
Contacts
plugin. - Click the
Install
button to add the plugin. - In the
Community Plugins
menu, enable theContacts
plugin.
- Download
main.js
,manifest.json
, andstyles.css
from the latest release. - Create a directory
obsidian-contacts
in your Obsidian vault plugins directory:<VaultFolder>/.obsidian/plugins/
. The final path should be<VaultFolder>/.obsidian/plugins/obsidian-contacts
. - Move the downloaded files (
main.js
,manifest.json
, andstyles.css
) into the newly created directory.(<VaultFolder>/.obsidian/plugins/obsidian-contacts
) - Restart Obsidian app.
- Enable
Contacts
pugin in theCommunity plugins
settings tab.
After enabling the plugin in the settings menu, you should see the contacts button appear in the left sidebar. Click it to open the Contacts view in the right sidebar.
The plugin reads your contacts folder, which can be changed in the settings, to render all your contacts in the right sidebar.
- Go to the settings.
- Find the "Contacts" tab.
- Change the value of "Contacts Folder Location" to an existing folder.
enable_plugin_and_change_folder.mov
- Click the "Contacts" icon in the left sidebar. The Contacts view should be opened in the right sidebar.
- Click the "Create" button in the opened Contacts view in the right sidebar.
- Fill out the created template. See an example below:
/---contact---/
| key | value |
| --------- | ------------------------ |
| Name | carl |
| Last Name | johnson |
| Phone | +1 555 555 5555 |
| Telegram | @carlj567 |
| Linkedin | linkedin.com/in/carlj567 |
| Birthday | 1966-12-06 |
| Last chat | 2022-12-06 |
| Friends | [[Bob]] [[Sue]] |
/---contact---/
Feel free to add more rows, and leave existing ones empty. Do not rename existing keys, as they can be used by the plugin.
create_contact.mov
You can use different sorting options to find the required contacts:
- Use sorting by birthday to find contacts with the nearest birthdays.
- Use sorting by last contact date to find contacts that you haven't talked to in a long time.
- Use sorting by name to find a specific contact.
filter-and-open.mov
Any of the following formats can be used for storing contact data in Obsidian files. The default for new contacts is Custom Format
, but this behavior can be changed in the settings using the Contact File Template
menu item.
The default format used by this plugin is the markdown table for storing contact's data.
/---contact---/
| key | value |
| --------- | ------------------------ |
| Name | carl |
| Last Name | johnson |
| Phone | +1 555 555 5555 |
| Telegram | @carlj567 |
| Linkedin | linkedin.com/in/carlj567 |
| Birthday | 1966-12-06 |
| Last chat | 2022-12-06 |
| Friends | [[Bob]] [[Sue]] |
/---contact---/
The Frontmatter format is used by Obsidian as metadata for files and is also supported by the Dataview plugin, allowing you to build queries for your contacts.
⚠️ Do not change or removetype
field. It is used to detect if the current file is a contact.
⚠️ It needs to be placed at the very top of the file. Be very careful here!
---
name:
first: carl
last: johnson
phone: +1 555 555 5555
telegram: @carlj567
linkedin: linkedin.com/in/carlj567
birthday: 1966-12-06
last_chat: 2022-12-06
friends: "[[Bob]] [[Sue]]"
type: contact
---