Skip to content

Commit

Permalink
💄 style: update
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquindev committed Dec 29, 2024
1 parent 0470ac0 commit f27bd3a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 70 deletions.
69 changes: 11 additions & 58 deletions appList.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,67 +114,20 @@
"PSScriptTools",
"Terminal-Icons"
],
"npm": [
{
"Command": "git-cz",
"Packages": ["commitizen", "cz-git"]
},
{
"Command": "git-open",
"Packages": ["git-open"]
},
{
"Command": "git-recent",
"Packages": ["git-recent"]
}
],
"github_extension": [
{
"Name": "gh-dash",
"Repo": "dlvhdr/gh-dash"
},
{
"Name": "gh-s",
"Repo": "gennaro-tedesco/gh-s"
},
{
"Name": "gh-token",
"Repo": "Link-/gh-token"
},
{
"Name": "gh-poi",
"Repo": "seachicken/gh-poi"
},
{
"Name": "gh-download",
"Repo": "yuler/gh-download"
},
{
"Name": "gh-markdown-preview",
"Repo": "yusukebe/gh-markdown-preview"
},
{
"Name": "gh-screensaver",
"Repo": "vilmibm/gh-screensaver"
}
{ "name": "gh-dash", "repo": "dlvhdr/gh-dash" },
{ "name": "gh-s", "repo": "gennaro-tedesco/gh-s" },
{ "name": "gh-token", "repo": "Link-/gh-token" },
{ "name": "gh-poi", "repo": "seachicken/gh-poi" },
{ "name": "gh-download", "repo": "yuler/gh-download" },
{ "name": "gh-markdown-preview", "repo": "yusukebe/gh-markdown-preview" },
{ "name": "gh-screensaver", "repo": "vilmibm/gh-screensaver" }
],
"nerdfont": [
{
"DisplayName": "CodeNewRoman Nerd Font",
"ShortName": "code-new-roman"
},
{
"DisplayName": "FantasqueSansM Nerd Font",
"ShortName": "fantasque-sans-mono"
},
{
"DisplayName": "FiraCode Nerd Font",
"ShortName": "fira-code"
},
{
"DisplayName": "JetBrainsMono NF",
"ShortName": "jetbrains-mono"
}
{ "display_name": "CodeNewRoman Nerd Font", "short_name": "code-new-roman" },
{ "display_name": "FantasqueSansM Nerd Font", "short_name": "fantasque-sans-mono" },
{ "display_name": "FiraCode Nerd Font", "short_name": "fira-code" },
{ "display_name": "JetBrainsMono NF", "short_name": "jetbrains-mono" }
]
}
}
25 changes: 13 additions & 12 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,23 @@
"minItems": 1,
"uniqueItems": true
},
"npm": {
"gihub_extension": {
"type": "array",
"description": "List of npm global packages",
"required": ["Command", "Packages"],
"description": "List of gh-cli extensions",
"required": ["name", "repo"],
"items": {
"anyOf": [
"uniqueItems": true,
"anyof": [
{
"type": "object",
"properties": {
"Command": {
"name": {
"type": "string",
"description": "Command installed by 'npm install --global'"
"description": "Name of the gh-cli extension"
},
"Packages": {
"type": "array",
"description": "List of packages installed by 'npm install --global'"
"repo": {
"type": "string",
"description": "gh-cli extension's repository name in format OWNER/REPO"
}
}
}
Expand All @@ -87,17 +88,17 @@
"nerdfont": {
"type": "array",
"description": "List of NerdFont fonts",
"required": ["DisplayName", "ShortName"],
"required": ["display_name", "short_name"],
"items": {
"anyOf": [
{
"type": "object",
"properties": {
"DisplayName": {
"display_name": {
"type": "string",
"description": "Full name of Nerd Font"
},
"ShortName": {
"short_name": {
"type": "string",
"description": "Name of Nerd Font of 'Invoke-NerdFontInstaller.ps1' script"
}
Expand Down

0 comments on commit f27bd3a

Please sign in to comment.