diff options
author | Chris <[email protected]> | 2021-08-04 15:21:50 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-08-04 15:21:50 -0400 |
commit | 410354e7b113749afa9cd173ae727d0a7f7c77a2 (patch) | |
tree | 0193b0f79b20756c2fa2d3093c6cdcddc6000bd3 /lua/default-config.lua | |
parent | b8145d8f60409cc4d405ec55c508e8c0d7c2c52d (diff) | |
parent | 26a2225c3a08d05e0ad1ba1813c37eb6062ae7fc (diff) |
Merge branch 'rolling' of github.com:LunarVim/LunarVim into rolling
Diffstat (limited to 'lua/default-config.lua')
-rw-r--r-- | lua/default-config.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua index f228d0fb..5b4074b6 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -932,9 +932,9 @@ lvim.lang = { init_options = { formatting = true, }, - root_dir = function() + root_dir = function(fname) local util = require("lspconfig").util - return util.root_pattern("Gemfile", ".git") + return util.root_pattern("Gemfile", ".git")(fname) end, settings = { solargraph = { |