https://github.com/LhKipp/nvim-nu
Basic editor support for the nushell language
https://github.com/LhKipp/nvim-nu
Last synced: about 1 month ago
JSON representation
Basic editor support for the nushell language
- Host: GitHub
- URL: https://github.com/LhKipp/nvim-nu
- Owner: LhKipp
- License: gpl-3.0
- Created: 2021-05-03T19:49:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-10T18:48:20.000Z (4 months ago)
- Last Synced: 2025-03-05T15:54:50.545Z (about 1 month ago)
- Language: Lua
- Size: 378 KB
- Stars: 148
- Watchers: 3
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neovim - LhKipp/nvim-nu - Basic editor support for the nushell language. (Syntax / PHP)
- awesome-nu - nvim plugin
- awesome-neovim-sorted - LhKipp/nvim-nu
- awesome-neovim-sorted - LhKipp/nvim-nu
README
# nvim-nu - Basic editor support for the nushell language

---
**Info: This plugin was made for nu version ~0.45. As nushell evolves quickly, the plugin might not work perfectly for later versions. PR's are welcome**
---
### Table of contents
* [Requirements](#requirements)
* [Installation](#installation)
* [Configuration](#configuration)
---# Requirements
- Neovim version >= 0.5
- A [nu](https://github.com/nushell/nushell/releases) binary in your path
- [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter/blob/master/README.md#quickstart) installed
- Optionally [none-ls.nvim](https://github.com/nvimtools/none-ls.nvim) to enable lsp features like hover (aka help) or command completion# Installation
You can install `nvim-nu` with your favorite package manager (or using the native `package` feature of vim, see `:h packages`).
Lazy
```lua
{
'LhKipp/nvim-nu',
build = ':TSInstall nu',
opts = {}
}
```vim-plug
```vim
Plug 'LhKipp/nvim-nu', {'do': ':TSInstall nu'}" Don't forget to call setup
require'nu'.setup{}
```## LSP Features
[null-ls.nvim](https://github.com/jose-elias-alvarez/null-ls.nvim) needs to be installed to have lsp features available. Currently only command name completion and hover (aka help) are supported.
Make sure to have a mapping set up for hover in nushell files! E.G. in your `ftplugin/nu.lua`
```lua
vim.keymap.set('n', 'K', vim.lsp.buf.hover, { buffer = true })
```## Configuration
(Default values are shown)
```lua
require'nu'.setup{
use_lsp_features = true, -- requires https://github.com/jose-elias-alvarez/null-ls.nvim
-- lsp_feature: all_cmd_names is the source for the cmd name completion.
-- It can be
-- * a string, which is evaluated by nushell and the returned list is the source for completions (requires plenary.nvim)
-- * a list, which is the direct source for completions (e.G. all_cmd_names = {"echo", "to csv", ...})
-- * a function, returning a list of strings and the return value is used as the source for completions
all_cmd_names = [[help commands | get name | str join "\n"]]
}
```# Known issues (PR's welcome)
* Calling `vim.lsp.buf.hover` on a subcommand does not show the help for the subcommand