mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 22:49:41 +00:00
Compare commits
No commits in common. "ec4d17cf83c09a3c092b82256bfd7a702b8f53ae" and "a3c02415f8b483551b6783d48ed914e866c529d2" have entirely different histories.
ec4d17cf83
...
a3c02415f8
5 changed files with 6 additions and 26 deletions
|
|
@ -1,3 +1,3 @@
|
||||||
local leap = require("leap")
|
local leap = require("leap")
|
||||||
vim.keymap.set({ "n", "x", "o" }, "s", function() leap.leap { backward = false } end)
|
vim.keymap.set({ "n", "x", "o" }, "s", function() leap.leap() end)
|
||||||
vim.keymap.set("n", "S", function() leap.leap { backward = true } end)
|
vim.keymap.set("n", "S", function() leap.leap { backward = true } end)
|
||||||
|
|
|
||||||
|
|
@ -16,18 +16,6 @@ infuse {
|
||||||
./patches/helix/W-as-write.patch
|
./patches/helix/W-as-write.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
# TODO:
|
|
||||||
# pinned branch of https://github.com/astrand/xclip/tree/xerror
|
|
||||||
# use this until #43 gets resolved properly
|
|
||||||
xclip.__output.src =
|
|
||||||
_:
|
|
||||||
final.fetchFromGitHub {
|
|
||||||
owner = "astrand";
|
|
||||||
repo = "xclip";
|
|
||||||
rev = "2c3b811002b35d3be7f39cc1145dd06bdb32e31c";
|
|
||||||
hash = "sha256-hHbq97GTKiRw8LZa/LY4LUOFOd/5H4+S+NR0BJfcu6M=";
|
|
||||||
};
|
|
||||||
|
|
||||||
fcitx5.__output.cmakeFlags.__append = [
|
fcitx5.__output.cmakeFlags.__append = [
|
||||||
(lib.cmakeFeature "ENABLE_EMOJI" "Off")
|
(lib.cmakeFeature "ENABLE_EMOJI" "Off")
|
||||||
(lib.cmakeFeature "ENABLE_WAYLAND" "Off")
|
(lib.cmakeFeature "ENABLE_WAYLAND" "Off")
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
final: prev:
|
final: prev:
|
||||||
let
|
let
|
||||||
inherit (final) lib;
|
|
||||||
|
|
||||||
iosevka-term = prev.iosevka.override {
|
iosevka-term = prev.iosevka.override {
|
||||||
# This changes pname which changes what the outputted buildPlan name is.
|
# This changes pname which changes what the outputted buildPlan name is.
|
||||||
# Stupid API
|
# Stupid API
|
||||||
|
|
@ -174,18 +172,12 @@ let
|
||||||
"--mono"
|
"--mono"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
warnActuallyTerm = lib.warn ''
|
|
||||||
The overlay "${toString ./iosevka-term.nix}" is used, you are actually using iosevka-term.
|
|
||||||
There is no difference between iosevka and iosevka term when using this overlay.
|
|
||||||
'';
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
iosevka = warnActuallyTerm iosevka-term;
|
inherit iosevka-term;
|
||||||
iosevka-term = iosevka-term;
|
|
||||||
|
|
||||||
nerd-fonts = prev.nerd-fonts // {
|
nerd-fonts = prev.nerd-fonts // {
|
||||||
iosevka = warnActuallyTerm iosevka-term-nerd;
|
iosevka = iosevka-term-nerd;
|
||||||
iosevka-term = iosevka-term-nerd;
|
iosevka-term = iosevka-term-nerd;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,8 @@ let
|
||||||
domain = "git.confusedcompiler.org";
|
domain = "git.confusedcompiler.org";
|
||||||
owner = "leana8959";
|
owner = "leana8959";
|
||||||
repo = "ruler";
|
repo = "ruler";
|
||||||
rev = "1740f6d632142e97b1a8c8157fb018039631eabf";
|
rev = "addc8a75dcfd64d5f40516f2526210c8fc163e70";
|
||||||
hash = "sha256-HNz4XJ26HXWc75/JE/Rx1TwpInCk978eQRh+DZS12CQ=";
|
hash = "sha256-6dnZgkeG0p2O4ROtrFoG+jUmAQPWKHodKzUdVrBgcIM=";
|
||||||
}) { };
|
}) { };
|
||||||
|
|
||||||
cabalOverrides = o: {
|
cabalOverrides = o: {
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,6 @@ in
|
||||||
(import sources.nixpkgs {
|
(import sources.nixpkgs {
|
||||||
overlays = map scopeOverlay [
|
overlays = map scopeOverlay [
|
||||||
(import ./overlay.nix)
|
(import ./overlay.nix)
|
||||||
(import ../overlays/iosevka-term.nix)
|
(import ../overlays/iosevka.nix)
|
||||||
];
|
];
|
||||||
}).export
|
}).export
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue