tuis.nvim

January 12, 2026 ยท View on GitHub

A collection of interactive terminal user interfaces for Neovim, built on top of morph.nvim. Provides rich, interactive UIs to various CLIs.

Features

  • Interactive process manager with signal sending capabilities
  • Docker container management (inspect, logs, exec, start/stop)
  • Kubernetes resource viewers (pods, deployments, services, nodes, events)
  • Cloud provider integrations (AWS, GCP)
  • System monitoring (resources, processes, services)
  • LSP server management
  • Bitwarden vault integration

Screenshots

Docker

Docker Containers

More Docker screenshots

Docker Images Docker Stats Docker System

Kubernetes

Kubernetes Pods

More Kubernetes screenshots

Kubernetes Deployments Kubernetes Services Kubernetes Events

Process Manager

Process Manager

More process manager screenshots

System Resources

More UIs

More UIs

Hacker News Launchd Services LSP Manager Models.dev

Installation

Using lazy.nvim:

{
  'jrop/tuis.nvim',
  config = function()
    -- Optional: set up keymaps
    vim.keymap.set('n', '<leader>m', function()
      require('tuis').choose()
    end, { desc = 'Choose Morph UI' })
  end
}

Using vim.pack:

vim.pack.add {
  { src = 'https://github.com/jrop/tuis.nvim' }
}
-- Then add to your `init.lua`:
-- Optional: set up keymaps
vim.keymap.set('n', '<leader>m', function()
  require('tuis').choose()
end, { desc: 'Choose Morph UI' })

Usage

Listing Available UIs

local tuis = require('tuis')

-- Get list of all available UIs
local uis = tuis.list()

-- Choose from available UIs in a picker
tuis.choose()

-- Run a specific UI by name
tuis.run('processes')

Available UIs

The plugin includes the following interactive UIs (in lua/tuis/uis/ directory):

System Management:

  • processes - Interactive process viewer with kill/signal capabilities
  • lsof - View open files and network connections
  • lsp_manager - LSP server management

Services:

  • systemd - Systemd service management (Linux)
  • launchd - Launchd service management (macOS)

Containers & Orchestration:

  • docker - Docker container management
  • k8s - Kubernetes resource viewer (pods, deployments, services, nodes, events)

Cloud Providers:

  • aws - AWS EC2 instances, Lambda functions, Auto Scaling groups viewer
  • gcloud - GCP compute instances, instance groups, secrets viewer

Security:

  • bitwarden - Bitwarden vault item viewer

Developer Tools:

  • github - GitHub issues, PRs, and workflow runs
  • hacker_news - Hacker News reader
  • models-dev - AI models browser (models.dev)
  • plugin_store - Neovim plugin browser and installer (NOTE: experimental)

Keybindings

All UIs follow consistent keybinding conventions. Press g? in any UI to see context-specific help.

Universal Keybindings

KeyAction
<Leader>rRefresh data
g?Toggle help panel
giInspect/view details (JSON/YAML)
g1-g9Navigate tabs (multi-page UIs)

Common Action Keybindings

KeyActionUsed In
glView logsDocker, K8s, AWS, Systemd, GitHub
gxExecute/shell into resourceDocker, K8s, AWS, GCloud
gkKill/terminate processProcess Manager, lsof, Docker
gsStart/scale resourceDocker, Systemd, Launchd
gSStop resourceDocker, Systemd, Launchd
grRestart/rerunDocker, K8s, Systemd, GitHub
goOpen in browser/consoleAWS, GCloud, GitHub, Bitwarden
gdDelete/remove resourceDocker, K8s, Plugin Store
gyYank/copy value to clipboardlsof, GitHub, Hacker News, Bitwarden
gvView related resourcesDocker, K8s, AWS
gpPush/pull/port-forwardDocker, K8s, GitHub
KeyAction
<CR>Select/open/view details
<C-o>Go back (detail views)
[[ / ]]Previous/next page

Namespace Switching (Systemd/Launchd)

KeyAction
<Leader>sSwitch to system namespace
<Leader>uSwitch to user namespace

License (MIT)

Copyright (c) 2026 jrapodaca@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.