Cleaning up nvim config.

This commit is contained in:
Derek Taylor
2024-10-30 19:17:40 -05:00
parent d00f7cdfe1
commit 7014a3d73f
6 changed files with 20 additions and 152 deletions

View File

@@ -23,8 +23,26 @@ packer.startup(function(use)
use("wbthomason/packer.nvim")
-- Dashboard is a nice start screen for nvim
use("glepnir/dashboard-nvim")
use {
'nvimdev/dashboard-nvim',
event = 'VimEnter',
config = function()
require('dashboard').setup {
-- config
theme = "hyper",
config = {
week_header = {
enable = true,
},
shortcut = {},
footer = {'',
'I Miss Emacs Already!'
},
},
}
end,
requires = {'nvim-tree/nvim-web-devicons'}
}
-- Telescope
use({
"nvim-telescope/telescope.nvim",