From d6b1bb7ec135f12ea3ab3eb276e00633e71423f3 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Thu, 10 Aug 2023 19:14:33 +0300 Subject: [PATCH] fix brackets --- .../nvim/lua/core/plugin_config/dashboard.lua | 33 +++++++++---------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/config/nvim/lua/core/plugin_config/dashboard.lua b/config/nvim/lua/core/plugin_config/dashboard.lua index 3fa67640..e29debf1 100644 --- a/config/nvim/lua/core/plugin_config/dashboard.lua +++ b/config/nvim/lua/core/plugin_config/dashboard.lua @@ -1,19 +1,18 @@ require('dashboard').setup { - theme = 'hyper' -- theme is doom and hyper default is hyper -disable_move -- default is false disable move keymap for hyper -shortcut_type -- shorcut type 'letter' or 'number' -change_to_vcs_root -- default is false,for open file in hyper mru. it will change to the root of vcs -config = {}, -- config used for theme -hide = { - statusline -- hide statusline default is true - tabline -- hide the tabline - winbar -- hide winbar -}, -preview = { - command -- preview command - file_path -- preview file path - file_height -- preview file height - file_width -- preview file width -}, - + theme = 'hyper', -- theme is doom and hyper default is hyper + disable_move, -- default is false disable move keymap for hyper + shortcut_type, -- shorcut type 'letter' or 'number' + change_to_vcs_root, -- default is false,for open file in hyper mru. it will change to the root of vcs + config = {}, -- config used for theme + hide = { + statusline -- hide statusline default is true + tabline -- hide the tabline + winbar -- hide winbar + }, + preview = { + command -- preview command + file_path -- preview file path + file_height -- preview file height + file_width -- preview file width + }, }