create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| { | |
| "Vue TS Template": { | |
| "prefix": "vts", | |
| "body": [ | |
| "<template>", | |
| " <div></div>", | |
| "</template>\n", | |
| "<script setup lang=\"ts\">", | |
| "import { defineComponent } from 'vue'\n", | |
| "interface Props {}\n", |
| { | |
| "React FC + TS": { | |
| "prefix": "rfts", | |
| "body": [ | |
| "import React from 'react'\n", | |
| "interface Props {", | |
| " children: any", | |
| " className?: string", | |
| "}\n", | |
| "const $1: React.FC<Props> = ({ children, className }) => (", |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"