mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
Compare commits
5 commits
a3c02415f8
...
ec4d17cf83
| Author | SHA1 | Date | |
|---|---|---|---|
| ec4d17cf83 | |||
| bab66207cc | |||
| 261ffa3ff1 | |||
| a12fabd33d | |||
| bcd45dddf5 |
5 changed files with 26 additions and 6 deletions
|
|
@ -1,3 +1,3 @@
|
||||||
local leap = require("leap")
|
local leap = require("leap")
|
||||||
vim.keymap.set({ "n", "x", "o" }, "s", function() leap.leap() end)
|
vim.keymap.set({ "n", "x", "o" }, "s", function() leap.leap { backward = false } end)
|
||||||
vim.keymap.set("n", "S", function() leap.leap { backward = true } end)
|
vim.keymap.set("n", "S", function() leap.leap { backward = true } end)
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,18 @@ 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,5 +1,7 @@
|
||||||
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
|
||||||
|
|
@ -172,12 +174,18 @@ 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
|
||||||
{
|
{
|
||||||
inherit iosevka-term;
|
iosevka = warnActuallyTerm iosevka-term;
|
||||||
|
iosevka-term = iosevka-term;
|
||||||
|
|
||||||
nerd-fonts = prev.nerd-fonts // {
|
nerd-fonts = prev.nerd-fonts // {
|
||||||
iosevka = iosevka-term-nerd;
|
iosevka = warnActuallyTerm 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 = "addc8a75dcfd64d5f40516f2526210c8fc163e70";
|
rev = "1740f6d632142e97b1a8c8157fb018039631eabf";
|
||||||
hash = "sha256-6dnZgkeG0p2O4ROtrFoG+jUmAQPWKHodKzUdVrBgcIM=";
|
hash = "sha256-HNz4XJ26HXWc75/JE/Rx1TwpInCk978eQRh+DZS12CQ=";
|
||||||
}) { };
|
}) { };
|
||||||
|
|
||||||
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.nix)
|
(import ../overlays/iosevka-term.nix)
|
||||||
];
|
];
|
||||||
}).export
|
}).export
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue