dotfiles/home/common/kakoune.nix

75 lines
2.3 KiB
Nix

{ pkgs, lib, ... }:
let
wrapKakoune = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: [ ]) }:
pkgs.symlinkJoin {
postBuild = ''
rm $out/bin/kak
makeWrapper ${lib.escapeShellArgs
[ "${pkgs.kakoune-unwrapped}/bin/kak" "${placeholder "out"}/bin/kak"
"--suffix" "PATH" ":" (lib.makeBinPath (extraPackages ++ [ (pkgs.python3.withPackages extraPython3Packages) ])) ]}
'';
buildInputs = [ pkgs.makeWrapper ]; preferLocalBuild = true;
name = "kakoune${pkgs.kakoune-unwrapped.version}"; paths = [ pkgs.kakoune-unwrapped ];
passthru.unwrapped = pkgs.kakoune-unwrapped; inherit (pkgs.kakoune-unwrapped) meta version;
};
in {
programs.kakoune = {
enable = true;
package = wrapKakoune {
extraPackages = with pkgs; [
rust-analyzer
nodePackages.bash-language-server shellcheck
nodePackages.typescript-language-server
clang-tools_latest
nodePackages.vscode-langservers-extracted
nil
marksman
taplo
];
extraPython3Packages = (pypkgs: with pypkgs; [ python-lsp-server ]);
};
config = {
# colorScheme
ui.changeColors = false;
};
extraConfig = ''
eval %sh{kak-lsp --kakoune -s $kak_session}
lsp-enable
hook global BufOpenFile .* autoconfigtab
hook global BufNewFile .* autoconfigtab
'';
plugins = with pkgs.kakounePlugins; [ kak-lsp smarttab-kak tabs-kak ];
};
xdg.configFile."kak-lsp/kak-lsp.toml".source = (pkgs.formats.toml { }).generate "kak-lsp.toml" {
language = {
# bash, clangd, json, html, css, python work out of the box
rust = {
filetypes = [ "rust" ];
roots = [ "rust-toolchain.toml" "rust-toolchain" "Cargo.toml" ];
command = "rust-analyzer";
};
typescript = {
filetypes = [ "typescript" ];
roots = [ "package.json" ];
command = "typescript-language-server";
args = [ "--stdio" ];
};
nix = {
filetypes = [ "nix" ];
roots = [ "flake.nix" ];
command = "nil";
};
markdown = {
filetypes = [ "markdown" ];
roots = [ ];
command = "marksman";
};
toml = {
filetypes = [ "toml" ];
roots = [ ];
command = "taplo";
};
};
};
}