diff --git a/lua/astrocommunity/docker/lazydocker/README.md b/lua/astrocommunity/docker/lazydocker/README.md new file mode 100644 index 000000000..eebf12d2c --- /dev/null +++ b/lua/astrocommunity/docker/lazydocker/README.md @@ -0,0 +1,5 @@ +# lazydocker.nvim + +A simple terminal UI for both docker and docker-compose. + +**Repository**: diff --git a/lua/astrocommunity/docker/lazydocker/init.lua b/lua/astrocommunity/docker/lazydocker/init.lua new file mode 100644 index 000000000..76d6473dc --- /dev/null +++ b/lua/astrocommunity/docker/lazydocker/init.lua @@ -0,0 +1,22 @@ +return { + { + "mgierada/lazydocker.nvim", + dependencies = { + "akinsho/toggleterm.nvim", + { + "AstroNvim/astrocore", + opts = { + mappings = { + n = { + ["t" .. "d"] = { + function() require("lazydocker").open() end, + desc = "ToggleTerm LazyDocker", + }, + }, + }, + }, + }, + }, + opts = {}, + }, +}