Originally based off of Obsidian Contacts Plugin by Vadim Beskrovnov, this plugin for Obsidian allows you to easily organize and manage your contacts. Simply create a note with contact information and use the plugin's features to quickly search and sort through your contacts. The Contacts NextGen plugin also helps you to remember birthdays of your contacts, and keeps track of the last time you met with 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 NextGen
plugin. - Click the
Install
button to add the plugin. - In the
Community Plugins
menu, enable theContacts NextGen
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-ng
. - Move the downloaded files (
main.js
,manifest.json
, andstyles.css
) into the newly created directory.(<VaultFolder>/.obsidian/plugins/obsidian-contacts-ng
) - Restart Obsidian app.
- Enable
Contacts NextGen
plugin 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 NextGen" tab.
- Change the value of "Contacts Folder Location" to an existing folder.
- 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:
---
name:
first: Scott
last: Johnson
phone: +1 555 877 2612
email: [email protected]
linkedin: linkedin.com/in/jwir3
birthday: 1983-07-20
last_contact: 2022-12-06
friends: "[[Bob]] [[Sue]]"
tags: "#contacts"
type: contact
---
Feel free to add more rows, and leave existing ones empty. Do not rename or delete existing keys, as they are used internally by the plugin.
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.
The format for the template file is YAML and is considered Frontmatter for a given page. By defining the necessary items in the frontmatter form, information about the contact is communicated through the plugin to the application. When in reading mode, the frontmatter will be formatted using an HTML table. This format 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
email: [email protected]
linkedin: linkedin.com/in/carlj567
birthday: 1966-12-06
last_contact: 2022-12-06
friends: "[[Bob]] [[Sue]]"
tags: "#contacts"
type: contact
---