This commit is contained in:
Steph 2022-07-23 13:50:27 +02:00
parent 89d7a8180f
commit 45eeb1c767

View File

@ -3,13 +3,12 @@
with pkgs;
let
myKakoune =
let
config = writeTextFile (rec {
name = "kakrc.kak";
config = writeTextFile (rec { name = "kakrc.kak";
destination = "/share/kak/autoload/${name}";
text = ''
hook global KakBegin .* %{
colorscheme colors
}
'';
});
lsp-config = writeTextFile (rec {
@ -129,14 +128,13 @@ let
postBuild = ''
wrapProgram $out/bin/kak-lsp --add-flags "--config $out/shhare/kak-lsp/kak-lsp.toml"
wrapProgram $out/bin/kak-lsp --add-flags "--config $out/share/kak-lsp/kak-lsp.toml"
'';
};
in
kakoune.override {
plugins = with kakounePlugins; [ config parinfer-rust lsp colors ];
myKakoune = kakoune.override {
plugins = with kakounePlugins; [ config lsp colors ];
};
in
{