home/editor: equip for note-taking

This commit is contained in:
Max Headroom 2022-09-15 23:56:45 +02:00
parent 969bdf8dd2
commit 6a0b7c081a
2 changed files with 10 additions and 1 deletions

View file

@ -38,8 +38,10 @@ let
--prefix PATH : ${path}
'';
in {
home.packages = [
home.packages = with pkgs; [
finalPackage
mdzk
zk
];
xdg.configFile = {

View file

@ -35,5 +35,12 @@
};
name = "yaml";
}
{
language-server = {
command = "${pkgs.zk}/bin/zk";
args = [ "lsp" ];
};
name = "markdown";
}
];
}