Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Add social profiles #41

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions data/snippets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1099,6 +1099,20 @@ const misc: Snippet[] = [
keyword: "standup",
type: "template",
},
{
id: nanoid(),
name: "LinkedIn Profile URL",
text: "https://linkedin.com/in/username",
keyword: "in",
type: "template",
},
{
id: nanoid(),
name: "Twitter / X Profile URL",
text: "https://x.com/username",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we make use of the {cursor} placeholder here?

Copy link
Contributor Author

@fmerian fmerian Nov 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@peduarte I’d say no, it works similarly to !cal

keyword: "tw",
type: "template",
},
];

export const snippetGroups: Category[] = [
Expand Down