feat(config): tmux plugins and config tweaks

This commit is contained in:
2023-07-31 09:08:12 +03:00
parent 9e3cc80694
commit d32b43d7a0
2 changed files with 25 additions and 15 deletions

View File

@@ -34,13 +34,14 @@ return {
position = "bottom" position = "bottom"
} }
}, },
{ import = "astrocommunity.debugging.telescope-dap-nvim" },
{ import = "astrocommunity.editing-support.comment-box-nvim" }, { import = "astrocommunity.editing-support.comment-box-nvim" },
{ import = "astrocommunity.editing-support.refactoring-nvim" }, { import = "astrocommunity.editing-support.refactoring-nvim" },
{ import = "astrocommunity.editing-support.neogen" }, { import = "astrocommunity.editing-support.neogen" },
{ import = "astrocommunity.editing-support.nvim-regexplainer" }, { import = "astrocommunity.editing-support.nvim-regexplainer" },
{ import = "astrocommunity.editing-support.todo-comments-nvim" }, { import = "astrocommunity.editing-support.todo-comments-nvim" },
{ import = "astrocommunity.indent.mini-indentscope" }, { import = "astrocommunity.indent.mini-indentscope" },
{ import = "astrocommunity.markdown-and-latex.glow-nvim" }, { import = "astrocommunity.lsp.lsp-signature-nvim" },
{ import = "astrocommunity.motion.harpoon" }, { import = "astrocommunity.motion.harpoon" },
{ import = "astrocommunity.pack.ansible" }, { import = "astrocommunity.pack.ansible" },
{ import = "astrocommunity.pack.bash" }, { import = "astrocommunity.pack.bash" },

View File

@@ -24,6 +24,24 @@ return {
{ {
"folke/edgy.nvim", "folke/edgy.nvim",
event = "VeryLazy", 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() init = function()
vim.opt.laststatus = 3 vim.opt.laststatus = 3
vim.opt.splitkeep = "screen" vim.opt.splitkeep = "screen"
@@ -69,15 +87,6 @@ return {
end, end,
size = { height = 0.5 }, 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", title = "Neo-Tree Buffers",
ft = "neo-tree", ft = "neo-tree",
@@ -87,11 +96,11 @@ return {
pinned = true, pinned = true,
open = "Neotree position=top buffers", open = "Neotree position=top buffers",
}, },
-- { {
-- ft = "Outline", ft = "Outline",
-- pinned = true, pinned = true,
-- open = "SymbolsOutlineOpen", open = "SymbolsOutlineOpen",
-- }, },
-- any other neo-tree windows -- any other neo-tree windows
"neo-tree", "neo-tree",
}, },