Added a Neighborhood Blogroll Thing
Wednesday, 27 April, 2022
Trying Nushell on Windows
Friday, 22 April, 2022

Config Tweaks for Nushell

Posted
Updated
note #config #nushell
Got a comment? A question? More of a comment than a question? Talk to me about this page on: mastodon

Added my Nushell config stuff to the site. It’s not that interesting yet.

What is?

Here’s a tmux binding to readily launch a nu session, while leaving $SHELL alone.

bind C new-window -- nu

And nvim-nu.nvim for Nushell support in Neovim through Treesitter.

use {
  "LhKipp/nvim-nu",
  run = ":TSInstall nu",
  config = function()
    require("nu").setup{}
  end
}