mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
fcc95ff817
This allows for correct highlighting and maybe future automatic formatting. The AST was verified to work with nixfmt only.
19 lines
549 B
Markdown
19 lines
549 B
Markdown
# Plotinus {#module-program-plotinus}
|
|
|
|
*Source:* {file}`modules/programs/plotinus.nix`
|
|
|
|
*Upstream documentation:* <https://github.com/p-e-w/plotinus>
|
|
|
|
Plotinus is a searchable command palette in every modern GTK application.
|
|
|
|
When in a GTK 3 application and Plotinus is enabled, you can press
|
|
`Ctrl+Shift+P` to open the command palette. The command
|
|
palette provides a searchable list of of all menu items in the application.
|
|
|
|
To enable Plotinus, add the following to your
|
|
{file}`configuration.nix`:
|
|
```nix
|
|
{
|
|
programs.plotinus.enable = true;
|
|
}
|
|
```
|