diff options
Diffstat (limited to 'lua/lv-globals.lua')
-rw-r--r-- | lua/lv-globals.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lua/lv-globals.lua b/lua/lv-globals.lua index bed92a45..d8065b27 100644 --- a/lua/lv-globals.lua +++ b/lua/lv-globals.lua @@ -1,3 +1,7 @@ +CONFIG_PATH = vim.fn.stdpath('config') +DATA_PATH = vim.fn.stdpath('data') +CACHE_PATH = vim.fn.stdpath('cache') + O = { auto_close_tree = 0, auto_complete = true, @@ -81,6 +85,3 @@ O = { } } -DATA_PATH = vim.fn.stdpath('data') -CACHE_PATH = vim.fn.stdpath('cache') - |