Kakoune: Difference between revisions
imported>Nhey No edit summary |
m fix link syntax in introduction |
||
(7 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
[https://github.com/mawww/kakoune Kakoune] is a modal text editor that operates on selections. Unlike Vim's command-motion paradigme, text is first selected, then operated upon (a motion-command paradigme, if you will). This allows Kakoune to provide strong visual feedback and incremental results while requiring keystroke counts similar to that of Vim. More on the design of Kakoune can be found here [https://github.com/mawww/kakoune/blob/master/doc/design.asciidoc] and on https://kakoune.org. | |||
== Configuration == | == Configuration == | ||
Kakoune may be configured without use of the nix build system (simply add it to your system environment and see [https://github.com/mawww/kakoune#running]), or it may be configured using | Kakoune may be configured without use of the nix build system (simply add it to your system environment and see [https://github.com/mawww/kakoune#running]), or it may be configured using <code>kakoune.override</code> and <code>pkgs.kakounePlugins</code>: | ||
<syntaxhighlight lang= | <syntaxhighlight lang=nix> | ||
let | let | ||
myKakoune = | myKakoune = | ||
Line 15: | Line 15: | ||
}); | }); | ||
in | in | ||
kakoune.override { | |||
plugins = with kakounePlugins; [ config parinfer-rust ]; | |||
}; | }; | ||
in | in | ||
Line 25: | Line 23: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
User configuration can simply be added as a plugin as above. | |||
== Plugins == | |||
To install a plugin, you can either install it manually without bothering about nix, or install it as shown above in an override like: | |||
<syntaxhighlight lang=nix> | |||
let | |||
myKakoune = kakoune.override { | |||
plugins = with kakounePlugins; [ parinfer-rust ]; | |||
}; | |||
in | |||
{ | |||
environment.systemPackages = [ myKakoune ]; | |||
} | |||
</syntaxhighlight> | |||
You should be able to search through the list of plugins using for instance nix search (if you don't have flake enabled you may need to add <code>--experimental-features 'nix-command flakes'</code> in front of the nix command) : | |||
<syntaxhighlight lang=console> | |||
$ nix search nixpkgs parinfer | |||
… | |||
* legacyPackages.x86_64-linux.kakounePlugins.parinfer-rust (0.4.3) | |||
Infer parentheses for Clojure, Lisp, and Scheme | |||
</syntaxhighlight> | |||
If your plugin is not listed, you can add it manually using <code>pkgs.kakouneUtils.buildKakounePluginFrom2Nix</code>: | |||
<syntaxhighlight lang=nix> | |||
let | |||
myKakoune = | |||
let | |||
snippets-kak = pkgs.kakouneUtils.buildKakounePluginFrom2Nix { | |||
pname = "snippets-kak"; | |||
version = "2021-07-18"; | |||
src = pkgs.fetchFromGitHub { | |||
owner = "occivink"; | |||
repo = "kakoune-snippets"; | |||
rev = "c0c39eda2e8f9608cbc0372583bf76441a24afd9"; | |||
sha256 = "12q32ahxvmi82f8jlx24xpd61vlnqf14y78ahj1381rv61a386mv"; | |||
}; | |||
meta.homepage = "https://github.com/occivink/kakoune-snippets/"; | |||
}; | |||
in | |||
kakoune.override { | |||
plugins = with kakounePlugins; [ parinfer-rust snippets-kak ]; | |||
}; | |||
in | |||
{ | |||
environment.systemPackages = [ myKakoune ]; | |||
} | |||
</syntaxhighlight> | |||
Other fetchers can be used for source code hosted with different hosting services, as described in the Nixpkgs manual [https://nixos.org/manual/nixpkgs/stable/#chap-pkgs-fetchers] (see the Nixpkgs repository for examples [https://github.com/NixOS/nixpkgs/blob/nixos-22.05/pkgs/applications/editors/kakoune/plugins/overrides.nix]). | |||
You can use the command-line tool <code>nix-prefetch-git $url</code> to get the SHA-256 of source distributions. | |||
[[Category:Applications]] | |||
[[Category:CLI Applications]] | |||
[[Category:Text Editor]] |