all repos — nixfiles @ 6520a4c037a0d918df3f0752093bb51ce1b5cacb

System and user configuration, managed by nix and home-manager

user/settings/development/lisp.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config
, pkgs
, ...
}: {
  home.packages = with pkgs; [
    sbcl
    lispPackages.quicklisp
    asdf
    cl-launch
  ] ++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [
    ccl
  ];

  programs.git.attributes = [
    "*.lisp diff=common-lisp"
  ];
  programs.git.extraConfig."diff.common-lisp" = {
    xfuncname = "^\\((def\\S+\\s+\\S+)";
  };
}