# melos.nvim **Repository Path**: mirrors_wasabeef/melos.nvim ## Basic Information - **Project Name**: melos.nvim - **Description**: A Neovim plugin to list and run Melos scripts for Dart/Flutter monorepos, with Telescope integration. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-04 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # melos.nvim
`melos.nvim` is a Neovim plugin that allows you to easily list and execute scripts defined by [melos](https://melos.invertase.dev/), a monorepo management tool for Dart / Flutter projects. https://github.com/user-attachments/assets/b7185a4c-6aea-4a73-a02a-e5d9a5ddf456 ## Features - Parses the `melos.yaml` of the current project and extracts the defined scripts. - Clearly lists script names and optionally configured descriptions in the `telescope.nvim` interface. - Selected scripts are executed in a customizable floating terminal, allowing you to check their output in real time. ## Requirements - Neovim >= 0.7 - [nvim-telescope/telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) - `yq` command-line tool (required for parsing `melos.yaml`) - See [yq documentation](https://github.com/mikefarah/yq/#macos--linux-via-homebrew) for installation instructions. ## Installation Install using your preferred plugin manager. ### lazy.nvim ```lua { "wasabeef/melos.nvim", dependencies = { "nvim-telescope/telescope.nvim" }, config = function() require("melos").setup({ -- Set the size of the floating terminal when executing scripts (optional) -- terminal_width = 100, -- Width (in characters) -- terminal_height = 30, -- Height (in lines) }) end, } ``` ### packer.nvim ```lua use { "wasabeef/melos.nvim", -- **Note**: Please replace this with your actual GitHub username or organization name. requires = { "nvim-telescope/telescope.nvim" }, config = function() require("melos").setup({ -- Set the size of the floating terminal when executing scripts (optional) -- terminal_width = 100, -- terminal_height = 30, }) end, } ``` ## Usage The plugin provides the following commands: ### `:MelosRun` Displays the scripts defined in `melos.yaml` in the `telescope.nvim` picker. Select a script and press `