Skip to content

Commit

Permalink
Merge branch 'main' into bump-brave-version
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Jul 11, 2023
2 parents 33e85f8 + abbc8c8 commit 8de3de7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .luarc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"workspace.library": [
"${3rd}/luassert/library"
],
"workspace.library": [],
"workspace.checkThirdParty": false
}
}
4 changes: 4 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@
copy-from-nvim-eval.exec = "cp -r $HOME/.config/nvim-eval/* $DEVENV_ROOT/home/features/neovim/";
copy-to-nvim-eval.exec = "cp -r $DEVENV_ROOT/home/features/neovim/* $HOME/.config/nvim-eval/";
};

processes = {
filesync.exec = "${pkgs.lsyncd}/bin/lsyncd -nodaemon -direct $DEVENV_ROOT/home/features/neovim/ $HOME/.config/nvim-eval/";
};
})
];
};
Expand Down
4 changes: 2 additions & 2 deletions home/features/neovim/lua/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ return {
hooks = {
before_open = function(results, open, jump, _method)
if #results == 1 then
jump(results[1]) -- argument is optional
jump(results[1])
else
open(results) -- argument is optional
open(results)
end
end,
},
Expand Down

0 comments on commit 8de3de7

Please sign in to comment.