Skip to content

Commit

Permalink
working when bindings are swiped
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Aug 30, 2024
1 parent 3553add commit 1d0f293
Show file tree
Hide file tree
Showing 4 changed files with 285 additions and 168 deletions.
46 changes: 0 additions & 46 deletions docs/docs/configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,52 +381,6 @@ use-current-path = false
color-automation = []
```

## Shell

You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`.

Entries in `shell.args` are passed unmodified as arguments to the shell.

Default:

- (macOS) user login shell
- (Linux/BSD) user login shell
- (Windows) powershell

### Shell Examples

1. MacOS using fish shell from bin path:

```toml
[shell]
program = "/bin/fish"
args = ["--login"]
```

2. Windows using powershell:

```toml
[shell]
program = "pwsh"
args = []
```

3. Windows using powershell with login:

```toml
[shell]
program = "pwsh"
args = ["-l"]
```

4. MacOS with tmux installed by homebrew:

```toml
[shell]
program = "/opt/homebrew/bin/tmux"
args = ["new-session", "-c", "/var/www"]
```

## Colors

Defining colors in the configuration file will not have any effect if you're using a theme.
Expand Down
Loading

0 comments on commit 1d0f293

Please sign in to comment.