diff options
author | kylo252 <[email protected]> | 2021-08-27 18:47:31 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2021-08-27 21:06:50 +0200 |
commit | 23952f14437be39056b1e89436e8aea76dfbb61d (patch) | |
tree | 06d0d3fe49242a4fc03019e88092adc3887b1520 /init.lua | |
parent | df7c3cb8f0512042bd24c10e744718991ae6a9a2 (diff) |
Fix missing "HOME" variable errors (#1415)
Co-authored-by: MarcSchaetz <[email protected]>
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |