Zim: Difference between revisions
Tomodachi94 (talk | contribs) Create page with an example for installing a plugin |
m Category:Applications |
||
Line 26: | Line 26: | ||
</syntaxHighlight> | </syntaxHighlight> | ||
[[Category: | [[Category:Applications]] |
Revision as of 07:07, 23 June 2024
Zim is a desktop note-taking application.
Installation
Zim can be installed from the zim
package.
Plugins
Zim bundles many plugins by default.
Installing unbundled plugins
Plugins not included with Zim can be installed into ~/.local/share/zim/plugins
.
For example, here is how you would install the zim-auto-linker
plugin with Home Manager:
{ pkgs, ... }:
{
xdg.dataDir."zim/plugins/zim-auto-linker".source = pkgs.fetchFromGitHub {
owner = "auralluring";
repo = "zim-auto-linker";
rev = "abcdefg1234"; # FIXME: replace with actual value
hash = pkgs.lib.fakeHash; # FIXME: replace with actual value
};
}