-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docker): Add
lazydocker.nvim
(#1176)
* feat(docker): Add `lazydocker.nvim` * fix(docker): Changing config to opts * docs(lazydocker): Remove unnessecary line * Apply suggestions from code review fixs(lazydocker): Fix opts table * fix(lazydocker): Remove prefix variable --------- Co-authored-by: Uzair Aftab <[email protected]>
- Loading branch information
1 parent
e9ca414
commit b2d1e01
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# lazydocker.nvim | ||
|
||
A simple terminal UI for both docker and docker-compose. | ||
|
||
**Repository**: <https://github.com/mgierada/lazydocker.nvim> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
return { | ||
{ | ||
"mgierada/lazydocker.nvim", | ||
dependencies = { | ||
"akinsho/toggleterm.nvim", | ||
{ | ||
"AstroNvim/astrocore", | ||
opts = { | ||
mappings = { | ||
n = { | ||
["<Leader>t" .. "d"] = { | ||
function() require("lazydocker").open() end, | ||
desc = "ToggleTerm LazyDocker", | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
opts = {}, | ||
}, | ||
} |