devos/profiles/develop/kakoune/default.nix

29 lines
709 B
Nix
Raw Normal View History

2020-01-04 06:06:31 +01:00
{ pkgs, ... }: {
2021-01-12 04:07:18 +01:00
imports = [ ../python ../haskell ];
2020-01-31 17:49:47 +01:00
2019-12-15 08:03:57 +01:00
environment.systemPackages = with pkgs; [
clang-tools
2020-12-29 03:05:46 +01:00
editorconfig-core-c
2019-12-15 08:03:57 +01:00
kak-lsp
kakoune-config
2019-12-15 08:03:57 +01:00
kakoune-unwrapped
nixpkgs-fmt
2019-12-15 08:03:57 +01:00
python3Packages.python-language-server
rustup
nix-linter
2020-07-30 07:39:24 +02:00
dhall
2020-12-28 01:38:22 +01:00
dhall-lsp-server
2021-01-12 04:07:18 +01:00
haskellPackages.haskell-language-server
2019-12-15 08:03:57 +01:00
];
environment.etc = {
2021-01-12 04:07:18 +01:00
"xdg/kak-lsp/kak-lsp.toml".source = ./kak-lsp.toml;
2019-12-15 08:03:57 +01:00
"xdg/kak/kakrc".source = ./kakrc;
"xdg/kak/autoload/plugins".source = ./plugins;
"xdg/kak/autoload/lint".source = ./lint;
"xdg/kak/autoload/lsp".source = ./lsp;
2020-01-04 06:06:31 +01:00
"xdg/kak/autoload/default".source =
"${pkgs.kakoune-unwrapped}/share/kak/rc";
2019-12-15 08:03:57 +01:00
};
}