nix: Various fixes
So that explains why quick-scope didn't work so far... but not why it built without it.
This commit is contained in:
parent
42954e7214
commit
55f2304223
|
@ -381,7 +381,7 @@ in
|
|||
stateVersion = "23.05";
|
||||
language = {
|
||||
base = "en_US.UTF-8";
|
||||
time = "en_DK.UTF-8";
|
||||
# time = "en_DK.UTF-8"; # FIXME Disabled because complaints during nixos-rebuild switch
|
||||
};
|
||||
packages = with pkgs; [
|
||||
# dotfiles dependencies
|
||||
|
|
|
@ -22,7 +22,7 @@ let
|
|||
owner = "unblevable";
|
||||
repo = "quick-scope";
|
||||
rev = "v${version}";
|
||||
sha256 = "iAPvIs/lhW+w5kFTZKaY97D/kfCGtqKrJVFvZ8cHu+c=";
|
||||
sha256 = "TcA4jZIdnQd06V+JrXGiCMr0Yhm9gB6OMiTSdzMt/Qw=";
|
||||
};
|
||||
meta.homepage = "https://github.com/unblevable/quick-scope";
|
||||
};
|
||||
|
@ -255,7 +255,6 @@ in
|
|||
# f/F mode
|
||||
vim-shot-f # Highlight relevant characters for f/F/t/T modes
|
||||
quick-scope # Highlight relevant characters for f/F modes one per word but always
|
||||
# FIXME Doesn't work here, :QuickScopeToggle doesn't even work
|
||||
|
||||
# Registers
|
||||
registers-nvim # Show register content when pressing "
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
|
||||
# android tools
|
||||
android-udev-rules
|
||||
|
||||
# Needed for all the fetchFromGit in this repo on nixos-rebuild
|
||||
git
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
|
Loading…
Reference in a new issue