diff --git a/config/astronvim/lua/user/plugins/community.lua b/config/astronvim/lua/user/plugins/community.lua index 270f0e4..1d38f5c 100644 --- a/config/astronvim/lua/user/plugins/community.lua +++ b/config/astronvim/lua/user/plugins/community.lua @@ -34,13 +34,14 @@ return { position = "bottom" } }, + { import = "astrocommunity.debugging.telescope-dap-nvim" }, { import = "astrocommunity.editing-support.comment-box-nvim" }, { import = "astrocommunity.editing-support.refactoring-nvim" }, { import = "astrocommunity.editing-support.neogen" }, { import = "astrocommunity.editing-support.nvim-regexplainer" }, { import = "astrocommunity.editing-support.todo-comments-nvim" }, { import = "astrocommunity.indent.mini-indentscope" }, - { import = "astrocommunity.markdown-and-latex.glow-nvim" }, + { import = "astrocommunity.lsp.lsp-signature-nvim" }, { import = "astrocommunity.motion.harpoon" }, { import = "astrocommunity.pack.ansible" }, { import = "astrocommunity.pack.bash" }, diff --git a/config/astronvim/lua/user/plugins/user.lua b/config/astronvim/lua/user/plugins/user.lua index da5408a..001c030 100644 --- a/config/astronvim/lua/user/plugins/user.lua +++ b/config/astronvim/lua/user/plugins/user.lua @@ -24,6 +24,24 @@ return { { "folke/edgy.nvim", event = "VeryLazy", + dependencies = { + { + 'nvim-neo-tree/neo-tree.nvim', + config = function() + require('neo-tree').setup({ + open_files_do_not_replace_types = { + 'terminal', 'Trouble', 'qf', 'edgy' + }, + }) + end, + }, + { + 'simrat39/symbols-outline.nvim', + config = function() + require('symbols-outline').setup() + end, + }, + }, init = function() vim.opt.laststatus = 3 vim.opt.splitkeep = "screen" @@ -69,15 +87,6 @@ return { end, size = { height = 0.5 }, }, - { - title = "Neo-Tree Git", - ft = "neo-tree", - filter = function(buf) - return vim.b[buf].neo_tree_source == "git_status" - end, - pinned = true, - open = "Neotree position=right git_status", - }, { title = "Neo-Tree Buffers", ft = "neo-tree", @@ -87,11 +96,11 @@ return { pinned = true, open = "Neotree position=top buffers", }, - -- { - -- ft = "Outline", - -- pinned = true, - -- open = "SymbolsOutlineOpen", - -- }, + { + ft = "Outline", + pinned = true, + open = "SymbolsOutlineOpen", + }, -- any other neo-tree windows "neo-tree", },