Skip to content

Commit

Permalink
fix: remove parenthesis from find_git_ancestor call
Browse files Browse the repository at this point in the history
  • Loading branch information
Massolari committed May 21, 2024
1 parent 9bda20f commit 6e357e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/lspconfig/server_configurations/drools_lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ end
return {
default_config = {
filetypes = { 'drools' },
root_dir = util.find_git_ancestor(),
root_dir = util.find_git_ancestor,
single_file_support = true,
on_new_config = function(new_config)
new_config.cmd = get_cmd(new_config)
Expand Down
2 changes: 1 addition & 1 deletion lua/lspconfig/server_configurations/mutt_ls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ return {
default_config = {
cmd = { 'mutt-language-server' },
filetypes = { 'muttrc', 'neomuttrc' },
root_dir = util.find_git_ancestor(),
root_dir = util.find_git_ancestor,
single_file_support = true,
settings = {},
},
Expand Down

0 comments on commit 6e357e3

Please sign in to comment.