diff --git a/nvim/.config/nvim/lua/plugin/dashboard.lua b/nvim/.config/nvim/lua/plugin/dashboard.lua deleted file mode 100644 index b4ef63e..0000000 --- a/nvim/.config/nvim/lua/plugin/dashboard.lua +++ /dev/null @@ -1,27 +0,0 @@ -return { - { - 'glepnir/dashboard-nvim', - event = 'VimEnter', - config = function() - require('dashboard').setup { - theme = 'hyper', - config = { - week_header = { - enable = true, - }, - shortcut = { - { icon = '󰚰 ', desc = 'Update', group = '@property', action = 'Lazy update', key = - 'U' }, - { icon = ' ', desc = 'Files', group = '@property', action = 'Telescope find_files', - key = - 'ff' }, - }, - footer = { '', - ' Now better then ever ', - }, - }, - } - end, - dependencies = { { 'nvim-tree/nvim-web-devicons' } } - } -}