Compare commits

...

4 commits

Author SHA1 Message Date
46bc5cb392 pkgs: unified-hosts-lists: 3.9.11 -> 3.10.1
All checks were successful
continuous-integration/drone/push Build is passing
2022-05-23 11:07:05 +02:00
1fa47793e8 home: vim: completion: activate 'ghost_text'
I'm still thinking whether I would want to use one of those signature
helper windows to go with this/replace this feature.

Could be especially useful in C++.
2022-05-19 14:53:09 +02:00
d4c4349cdb pkgs: dragger: fix meta information 2022-05-15 19:07:49 +02:00
522cc99c03 home: packages: remove 'rr'
No need for this, now that I have a dedicated option for the package.
2022-05-10 13:51:49 +02:00
4 changed files with 6 additions and 4 deletions

View file

@ -22,7 +22,6 @@ in
file
mosh
ripgrep
rr
termite.terminfo
] ++ cfg.additionalPackages);
}

View file

@ -57,5 +57,8 @@ cmp.setup({
cmp.config.compare.order,
},
},
experimental = {
ghost_text = true,
},
})
EOF

View file

@ -23,7 +23,7 @@ qt5.mkDerivation rec {
description = "A CLI drag-and-drop tool";
homepage = "https://gitea.belanyi.fr/ambroisie/dragger";
license = licenses.mit;
maintainers = [ ambroisie ];
maintainers = with maintainers; [ ambroisie ];
platforms = platforms.linux;
};
}

View file

@ -1,13 +1,13 @@
{ lib, fetchFromGitHub, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "unified-hosts-lists";
version = "3.9.11";
version = "3.10.1";
src = fetchFromGitHub {
owner = "StevenBlack";
repo = "hosts";
rev = version;
sha256 = "sha256-JFz6M0Mkwoby7I6LLWx0QfvZMzwET2FEQ1OGKQnFfho=";
sha256 = "sha256-PFKKYtssjAJGrP3AQE32ZJGlxwxnFa0vUTpCn94fCFI=";
};
dontUnpack = true;