Compare commits

...

2 Commits

Author SHA1 Message Date
06f2309e9f
feat(hosts/orion): use cachix substituters
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 38s
2024-10-28 16:13:34 -05:00
d839ea4993
refactor(nvim): do not change cursor pos on buf del in telescope 2024-10-28 16:13:18 -05:00
3 changed files with 16 additions and 2 deletions

View File

@ -13,6 +13,13 @@
auto-optimise-store = true;
use-xdg-base-directories = true;
trusted-users = [ "@wheel" ];
substituters = [
"https://nix-community.cachix.org"
"https://cache.nixos.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
gc = {
automatic = true;
@ -20,4 +27,4 @@
options = "--delete-older-than 7d";
};
};
}
}

View File

@ -10,6 +10,13 @@
"nix-command"
"flakes"
];
substituters = [
"https://nix-community.cachix.org"
"https://cache.nixos.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
auto-optimise-store = true;
use-xdg-base-directories = true;
trusted-users = [ "@wheel" ];

View File

@ -153,7 +153,7 @@ return {
["<C-h>"] = actions.preview_scrolling_left,
["<C-l>"] = actions.preview_scrolling_right,
["<C-d>"] = actions.cycle_history_next,
["<A-x>"] = actions.delete_buffer + actions.move_to_top,
["<A-x>"] = actions.delete_buffer,
["<C-s>"] = actions.cycle_history_prev,
["<C-q>"] = actions.smart_send_to_qflist,
},