nix-config/modules/nixvim/completion.nix
Dennis 6543d4a7f3 feat: nixvim config
currently only for dnsc-air. can simply be imported in other hosts
2026-02-04 19:03:10 +01:00

21 lines
345 B
Nix

{
plugins.blink-cmp = {
enable = true;
settings = {
keymap = {
preset = "default";
};
appearance = {
nerd_font_variant = "mono";
};
completion = {
documentation = {
auto_show = false;
};
};
signature = {
enabled = true;
};
};
};
}