Docker mangement in Neovim

lazydocker.nvim is my personal Neovim plugin project that brings the power of lazydocker directly into your editor workflow Check out the project source code on Github `lazydocker.nvim` is a Lua-based Neovim plugin that allows you to open lazydocker in a floating window without ever leaving your editor. This means you can quickly check on your containers, view logs, or manage services, and then get right back to your code with a single keystroke. ...

August 24, 2025 · Adran Carnavale

Contributing ESLint Support to nvim-lspconfig

My recent contribution to the neovim/nvim-lspconfig repository adds comprehensive eslint language server support using the modern `vim.lsp.config` api. this pull request addresses issue #3075. Check out the pull request #3731 nvim-lspconfig is the official Neovim plugin that provides quickstart configurations for Language Server Protocol (LSP) clients. With the release of Neovim 0.11, the project has been transitioning from the legacy `require'lspconfig'.setup{}` pattern to the new `vim.lsp.config` API. This modernization effort requires updating all existing configurations to use the new pattern. ...

April 27, 2025 · Adran Carnavale