This commit is contained in:
cmccay 2023-06-23 17:32:02 -05:00
parent 5fbc6f4a16
commit 2ea210b1df
3 changed files with 2 additions and 20 deletions

View File

@ -52,7 +52,7 @@ return
'',
}
dashboard.section.header.val = ANIME
dashboard.section.header.val = PANDA
dashboard.section.buttons.val = {
dashboard.button("f", " Find file", ":Telescope find_files <CR>"),

View File

@ -125,25 +125,6 @@ return {
config = true,
},
-- File Explorer
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v2.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
},
-- Object Explorer
{
'simrat39/symbols-outline.nvim',
config = {
auto_preview = true,
}
},
-- Terminal
{
'akinsho/toggleterm.nvim',

View File

@ -6,6 +6,7 @@ return {
require("telescope").load_extension("fzf")
require("telescope").load_extension("file_browser")
require("telescope").load_extension("neoclip")
require("telescope").load_extension("repo")
end
},