diff options
| author | kylo252 <[email protected]> | 2021-08-17 17:20:18 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-17 19:50:18 +0430 | 
| commit | 335e707b2aae38c0cd5d0d962b27038ab1117aa6 (patch) | |
| tree | 4be5b6ca5ea2e018893b067e5656f199e7a99e8f /lua/core/dashboard.lua | |
| parent | 1cc2452eb7b76aad36a6d9d210abff88edf6721a (diff) | |
[Feature] Make the rest of the builtins configurable (#1318)
Diffstat (limited to 'lua/core/dashboard.lua')
| -rw-r--r-- | lua/core/dashboard.lua | 17 | 
1 files changed, 5 insertions, 12 deletions
| diff --git a/lua/core/dashboard.lua b/lua/core/dashboard.lua index d5e5bfe9..649be14c 100644 --- a/lua/core/dashboard.lua +++ b/lua/core/dashboard.lua @@ -3,6 +3,8 @@ M.config = function()    lvim.builtin.dashboard = {      active = false,      search_handler = "telescope", +    disable_at_vim_enter = 0, +    session_directory = os.getenv "HOME" .. "/.cache/lvim/sessions",      custom_header = {        "⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣀⣀⣀⣀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀",        "⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣤⣶⣾⠿⠿⠟⠛⠛⠛⠛⠿⠿⣿⣷⣤⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀", @@ -52,7 +54,7 @@ M.config = function()  end  M.setup = function() -  vim.g.dashboard_disable_at_vimenter = 0 +  vim.g.dashboard_disable_at_vimenter = lvim.builtin.dashboard.disable_at_vim_enter    vim.g.dashboard_custom_header = lvim.builtin.dashboard.custom_header @@ -62,12 +64,8 @@ M.setup = function()    lvim.builtin.which_key.mappings[";"] = { "<cmd>Dashboard<CR>", "Dashboard" } -  -- f = { -  --   description = { "  Neovim Config Files" }, -  --   command = "Telescope find_files cwd=" .. CONFIG_PATH, -  -- }, -  -- e = {description = {'  Marks              '}, command = 'Telescope marks'} -  vim.cmd 'let g:dashboard_session_directory = "~/.config/lvim/.sessions"' +  vim.g.dashboard_session_directory = lvim.builtin.dashboard.session_directory +    vim.cmd "let packages = len(globpath('~/.local/share/lunarvim/site/pack/packer/start', '*', 0, 1))"    vim.api.nvim_exec( @@ -77,11 +75,6 @@ M.setup = function()      false    ) -  -- file_browser = {description = {' File Browser'}, command = 'Telescope find_files'}, - -  -- vim.g.dashboard_session_directory = CACHE_PATH..'/session' -  -- vim.g.dashboard_custom_footer = lvim.dashboard.footer -    require("core.autocmds").define_augroups {      _dashboard = {        -- seems to be nobuflisted that makes my stuff disappear will do more testing | 
