Skip to content

Commit

Permalink
Correct require-trigger logic
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed May 7, 2024
1 parent 1aae595 commit 68ea128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions home/nixvim/completion.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ in {
completeopt = "menu,menuone,noinsert,noselect";
autocomplete =
if cfg.require-trigger
then null
else false;
then false
else null;
};
sources = [
{name = "nvim_lsp";}
Expand Down

0 comments on commit 68ea128

Please sign in to comment.