diff options
author | Christian Chiarulli <[email protected]> | 2021-07-19 22:50:07 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-19 22:50:07 -0400 |
commit | d02265175f33fb1586e5e1f080e0730c8642a961 (patch) | |
tree | 74edc2e46da039ab2c04c96d0198a8a30a4ca217 /lua/default-config.lua | |
parent | acb6a7a2cedcb758db912cc4c9c8afdae7c11840 (diff) |
Decoupling config from nvim (#1038)
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 e245fe86..2503aaa2 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -1,4 +1,4 @@ -CONFIG_PATH = vim.fn.stdpath "config" +CONFIG_PATH = os.getenv "HOME" .. "/.local/share/lunarvim/lvim" DATA_PATH = vim.fn.stdpath "data" CACHE_PATH = vim.fn.stdpath "cache" TERMINAL = vim.fn.expand "$TERMINAL" @@ -13,7 +13,7 @@ O = { transparent_window = false, format_on_save = true, lint_on_save = true, - vsnip_dir = vim.fn.stdpath "config" .. "/snippets", + vsnip_dir = os.getenv "HOME" .. "/.config/snippets", default_options = { backup = false, -- creates a backup file |