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/core/dashboard.lua | |
parent | acb6a7a2cedcb758db912cc4c9c8afdae7c11840 (diff) |
Decoupling config from nvim (#1038)
Diffstat (limited to 'lua/core/dashboard.lua')
-rw-r--r-- | lua/core/dashboard.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lua/core/dashboard.lua b/lua/core/dashboard.lua index 73f62c25..a1af5319 100644 --- a/lua/core/dashboard.lua +++ b/lua/core/dashboard.lua @@ -43,7 +43,8 @@ M.config = function() }, d = { description = { " Settings " }, - command = ":e " .. CONFIG_PATH .. "/lv-config.lua", + -- command = ":e " .. CONFIG_PATH .. "/lv-config.lua", + command = ":e ~/.config/lvim/lv-config.lua", }, }, @@ -67,8 +68,8 @@ M.setup = function() -- command = "Telescope find_files cwd=" .. CONFIG_PATH, -- }, -- e = {description = {' Marks '}, command = 'Telescope marks'} - vim.cmd "let g:dashboard_session_directory = $HOME..'/.config/nvim/.sessions'" - vim.cmd "let packages = len(globpath('~/.local/share/nvim/site/pack/packer/start', '*', 0, 1))" + vim.cmd 'let g:dashboard_session_directory = "~/.config/lvim/.sessions"' + vim.cmd "let packages = len(globpath('~/.local/share/lunarvim/site/pack/packer/start', '*', 0, 1))" vim.api.nvim_exec( [[ |