Compare commits
2 commits
e4f3c24299
...
d2588bee42
Author | SHA1 | Date | |
---|---|---|---|
d2588bee42 | |||
b68bad886b |
2 changed files with 16 additions and 7 deletions
|
@ -46,7 +46,7 @@ with inputs.nixpkgs.lib; {
|
|||
};
|
||||
in
|
||||
{
|
||||
nixosConfigurations.${hostname} = nixosSystem rec {
|
||||
nixosConfigurations.${hostname} = nixosSystem {
|
||||
inherit system pkgs;
|
||||
|
||||
specialArgs = {
|
||||
|
|
|
@ -109,11 +109,11 @@ with lib; {
|
|||
|
||||
keymaps = [
|
||||
{
|
||||
key = "<Leader>t";
|
||||
action = "<cmd> ToggleTerm direction=horizontal <CR>";
|
||||
key = "<Leader>tt";
|
||||
action = "<cmd> ToggleTerm direction=float <CR>";
|
||||
}
|
||||
{
|
||||
key = "<Leader>x";
|
||||
key = "<Leader>xx";
|
||||
action = "<cmd> Trouble diagnostics toggle focus=false<CR>";
|
||||
}
|
||||
];
|
||||
|
@ -139,7 +139,6 @@ with lib; {
|
|||
colorizer.enable = true;
|
||||
comment.enable = true;
|
||||
gitsigns.enable = true;
|
||||
lazygit.enable = true;
|
||||
lsp-format.enable = true;
|
||||
notify.enable = true;
|
||||
nvim-autopairs.enable = true;
|
||||
|
@ -176,8 +175,18 @@ with lib; {
|
|||
"fallback"
|
||||
];
|
||||
};
|
||||
completion.menu.auto_show = true;
|
||||
completion.documentation.auto_show = true;
|
||||
completion = {
|
||||
menu.auto_show = true;
|
||||
documentation.auto_show = true;
|
||||
list.selection.preselect = false;
|
||||
};
|
||||
cmdline = {
|
||||
keymap.preset = "inherit";
|
||||
completion = {
|
||||
menu.auto_show = true;
|
||||
list.selection.preselect = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue