<feed xmlns='http://www.w3.org/2005/Atom'>
<title>atuin/atuin-client/config.toml, branch main</title>
<subtitle>Turtle. A hard-fork of atuin, focusing on a more minimal feature set</subtitle>
<id>http://git.foss-syndicate.org/bpeetz/forks/atuin/atom/atuin-client/config.toml?h=main</id>
<link rel='self' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/atom/atuin-client/config.toml?h=main'/>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/'/>
<updated>2024-04-18T15:41:28Z</updated>
<entry>
<title>chore: move crates into crates/ dir (#1958)</title>
<updated>2024-04-18T15:41:28Z</updated>
<author>
<name>Ellie Huxtable</name>
<email>ellie@elliehuxtable.com</email>
</author>
<published>2024-04-18T15:41:28Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=95cc472037fcb3207b510e67f1a44af4e2a2cae9'/>
<id>urn:sha1:95cc472037fcb3207b510e67f1a44af4e2a2cae9</id>
<content type='text'>
I'd like to tidy up the root a little, and it's nice to have all the
rust crates in one place</content>
</entry>
<entry>
<title>feat: show preview auto (#1804)</title>
<updated>2024-04-18T15:16:54Z</updated>
<author>
<name>Helmut K. C. Tessarek</name>
<email>tessarek@evermeet.cx</email>
</author>
<published>2024-04-18T15:16:54Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=176eae02f7f855ef40a4461caca61d530486113f'/>
<id>urn:sha1:176eae02f7f855ef40a4461caca61d530486113f</id>
<content type='text'>
* feat: show preview auto

* refactor: preview_auto</content>
</entry>
<entry>
<title>feat: sync v2 default for new installs (#1914)</title>
<updated>2024-04-02T13:41:13Z</updated>
<author>
<name>Ellie Huxtable</name>
<email>ellie@elliehuxtable.com</email>
</author>
<published>2024-04-02T13:41:13Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=e7f808d50a4d0a011307a263c3df1717c3aff4f9'/>
<id>urn:sha1:e7f808d50a4d0a011307a263c3df1717c3aff4f9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat(ui): Add config setting for showing tabs (#1755)</title>
<updated>2024-03-01T14:57:18Z</updated>
<author>
<name>Anderson</name>
<email>141751473+digital-cuttlefish@users.noreply.github.com</email>
</author>
<published>2024-03-01T14:57:18Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=9933220dac1e5d3d5799e14923fd6671ec45b2d6'/>
<id>urn:sha1:9933220dac1e5d3d5799e14923fd6671ec45b2d6</id>
<content type='text'>
* Add config setting for showing tabs

* Added semicolon</content>
</entry>
<entry>
<title>feat(stats): add linux sysadmin commands to common_subcommands (#1784)</title>
<updated>2024-02-27T13:27:39Z</updated>
<author>
<name>Helmut K. C. Tessarek</name>
<email>tessarek@evermeet.cx</email>
</author>
<published>2024-02-27T13:27:39Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=94c85c31891c154d984f41a82401e0a7f782722e'/>
<id>urn:sha1:94c85c31891c154d984f41a82401e0a7f782722e</id>
<content type='text'>
* feat(stats): add linux sysadmin commands to common_subcommands

I've been using atuin on my Linux box for some time now and I have
noticed that a few commands that are used rather often are not in the
list of common_subcommands.
This change adds these commands to the list.

* feat(stats): I forgot 'apt'</content>
</entry>
<entry>
<title>feat(stats): Normalize formatting of default config, suggest nix (#1764)</title>
<updated>2024-02-26T14:58:22Z</updated>
<author>
<name>Sandro</name>
<email>sandro.jaeckel@gmail.com</email>
</author>
<published>2024-02-26T14:58:22Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=cc964861c4a06580edcc2b0b812fdbe02e685a29'/>
<id>urn:sha1:cc964861c4a06580edcc2b0b812fdbe02e685a29</id>
<content type='text'>
* Normalize formatting

This makes the commented bits unifed and makes lists multiline and
always adds the trailing comma.

* Add nix to default config

Since we are big fans of it ;)</content>
</entry>
<entry>
<title>feat(client): add config option keys.scroll_exits (#1744)</title>
<updated>2024-02-21T08:25:55Z</updated>
<author>
<name>Helmut K. C. Tessarek</name>
<email>tessarek@evermeet.cx</email>
</author>
<published>2024-02-21T08:25:55Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=56b971ae1990f8b03603260801161caf0dfb84d7'/>
<id>urn:sha1:56b971ae1990f8b03603260801161caf0dfb84d7</id>
<content type='text'>
* feat(client): add config option keys.scroll_exits

If the config option is set the `false`, using the up/down key won't
exit the TUI when scrolled past the first/last entry.

Example:

```
[keys]
scroll_exits = false
```

The default is `true`, which is the current behavior.

* Update atuin/src/command/client/search/interactive.rs

Co-authored-by: Koichi Murase &lt;myoga.murase@gmail.com&gt;

* refactor: add option to config.toml

---------

Co-authored-by: Koichi Murase &lt;myoga.murase@gmail.com&gt;</content>
</entry>
<entry>
<title>fix: typo (#1741)</title>
<updated>2024-02-20T12:54:48Z</updated>
<author>
<name>Onè</name>
<email>43485962+c-git@users.noreply.github.com</email>
</author>
<published>2024-02-20T12:54:48Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=409456fce1800202e0b69f3ff830b5528de178db'/>
<id>urn:sha1:409456fce1800202e0b69f3ff830b5528de178db</id>
<content type='text'>
</content>
</entry>
<entry>
<title>feat: add 'ignored_commands' option to stats (#1722)</title>
<updated>2024-02-15T18:52:19Z</updated>
<author>
<name>David</name>
<email>drmorr@appliedcomputing.io</email>
</author>
<published>2024-02-15T18:52:19Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=f8d01eef998c86c52514896539c13dbfe1837e55'/>
<id>urn:sha1:f8d01eef998c86c52514896539c13dbfe1837e55</id>
<content type='text'>
</content>
</entry>
<entry>
<title>docs: minor formatting updates to the default config.toml (#1689)</title>
<updated>2024-02-12T09:26:29Z</updated>
<author>
<name>David</name>
<email>drmorr@evokewonder.com</email>
</author>
<published>2024-02-12T09:26:29Z</published>
<link rel='alternate' type='text/html' href='http://git.foss-syndicate.org/bpeetz/forks/atuin/commit/?id=b4f8d1433bf6ac28e71969c0a141d53acd93fdf9'/>
<id>urn:sha1:b4f8d1433bf6ac28e71969c0a141d53acd93fdf9</id>
<content type='text'>
</content>
</entry>
</feed>
