Compare commits

..

No commits in common. "d2588bee425ad133b5aa9f9fc86d4a4c41ae4e41" and "e4f3c242991b37a3c6e945e4cf2d72ab01dc35ee" have entirely different histories.

2 changed files with 7 additions and 16 deletions

View file

@ -46,7 +46,7 @@ with inputs.nixpkgs.lib; {
}; };
in in
{ {
nixosConfigurations.${hostname} = nixosSystem { nixosConfigurations.${hostname} = nixosSystem rec {
inherit system pkgs; inherit system pkgs;
specialArgs = { specialArgs = {

View file

@ -109,11 +109,11 @@ with lib; {
keymaps = [ keymaps = [
{ {
key = "<Leader>tt"; key = "<Leader>t";
action = "<cmd> ToggleTerm direction=float <CR>"; action = "<cmd> ToggleTerm direction=horizontal <CR>";
} }
{ {
key = "<Leader>xx"; key = "<Leader>x";
action = "<cmd> Trouble diagnostics toggle focus=false<CR>"; action = "<cmd> Trouble diagnostics toggle focus=false<CR>";
} }
]; ];
@ -139,6 +139,7 @@ with lib; {
colorizer.enable = true; colorizer.enable = true;
comment.enable = true; comment.enable = true;
gitsigns.enable = true; gitsigns.enable = true;
lazygit.enable = true;
lsp-format.enable = true; lsp-format.enable = true;
notify.enable = true; notify.enable = true;
nvim-autopairs.enable = true; nvim-autopairs.enable = true;
@ -175,18 +176,8 @@ with lib; {
"fallback" "fallback"
]; ];
}; };
completion = { completion.menu.auto_show = true;
menu.auto_show = true; completion.documentation.auto_show = true;
documentation.auto_show = true;
list.selection.preselect = false;
};
cmdline = {
keymap.preset = "inherit";
completion = {
menu.auto_show = true;
list.selection.preselect = false;
};
};
}; };
}; };