summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-08-27 18:47:31 +0200
committerkylo252 <[email protected]>2021-08-27 21:06:50 +0200
commit23952f14437be39056b1e89436e8aea76dfbb61d (patch)
tree06d0d3fe49242a4fc03019e88092adc3887b1520 /init.lua
parentdf7c3cb8f0512042bd24c10e744718991ae6a9a2 (diff)
Fix missing "HOME" variable errors (#1415)
Co-authored-by: MarcSchaetz <[email protected]>
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.lua b/init.lua
index d253191e..3ed7d231 100644
--- a/init.lua
+++ b/init.lua
@@ -47,7 +47,7 @@ end
local lsp_settings_status_ok, lsp_settings = pcall(require, "nlspsettings")
if lsp_settings_status_ok then
lsp_settings.setup {
- config_home = os.getenv "HOME" .. "/.config/lvim/lsp-settings",
+ config_home = home_dir .. "/.config/lvim/lsp-settings",
}
end