Skip to content

Commit

Permalink
Merge pull request #104 from Avivbens/add-apps
Browse files Browse the repository at this point in the history
fix(apps): add `fd` tool
  • Loading branch information
Avivbens authored Jul 1, 2024
2 parents 555edd8 + 2d22549 commit 0ac0c8a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/commands/install/config/apps-groups/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const GIT_APPS: Readonly<IAppSetup[]> = [
commands: () => [
// avoid lock for other `git config` options
'sleep 3',
`git config http.sslVerify "false"`,
`git config --global http.sslVerify "false"`,
],
deps: ['Git'],
},
Expand Down
16 changes: 12 additions & 4 deletions src/commands/install/config/apps-groups/ides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,16 @@ export const IDES: Readonly<IAppSetup[]> = [
tags: ['web-engineering', 'node-engineering'],
paid: true,
openUrl: () => BREW_HOME('webstorm', true),
commands: () => [BROW_CASK('webstorm')],
fallbackCommands: () => [BREW_CASK('webstorm')],
commands: () => [BREW_CASK('webstorm')],
fallbackCommands: () => [BROW_CASK('webstorm')],
},
{
name: 'IntelliJ IDEA Ultimate',
group: 'IDEs',
paid: true,
openUrl: () => BREW_HOME('intellij-idea', true),
commands: () => [BREW_CASK('intellij-idea')],
fallbackCommands: () => [BROW_CASK('intellij-idea')],
},
{
name: 'Pycharm',
Expand All @@ -25,7 +33,7 @@ export const IDES: Readonly<IAppSetup[]> = [
description: 'Python IDE',
paid: true,
openUrl: () => BREW_HOME('pycharm', true),
commands: () => [BROW_CASK('pycharm')],
fallbackCommands: () => [BREW_CASK('pycharm')],
commands: () => [BREW_CASK('pycharm')],
fallbackCommands: () => [BROW_CASK('pycharm')],
},
]
9 changes: 9 additions & 0 deletions src/commands/install/config/apps-groups/terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ export const TERMINAL_APPS: Readonly<IAppSetup[]> = [
commands: () => [BREW_INSTALL('mcfly')],
fallbackCommands: () => [BROW_INSTALL('mcfly')],
},
{
name: 'Fd',
description: 'A simple, fast and user-friendly alternative to find',
group: 'terminal',
tags: ['productivity'],
openUrl: () => BREW_HOME('fd'),
commands: () => [BREW_INSTALL('fd')],
fallbackCommands: () => [BROW_INSTALL('fd')],
},
{
name: 'TL;DR',
description: 'Simplified and community-driven man pages',
Expand Down

0 comments on commit 0ac0c8a

Please sign in to comment.