-
flatten.nvim
Pipe from wezterm, kitty, and neovim terminals into your current neovim instance. Like `code -r` on steroids.
I'm happy to announce the release of my new plugin, flatten.nvim. It solves the problem of files opening in nested Neovim instances when opened from terminal buffers.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
I've found that pretty much any functionality I would need can be implemented using these three callbacks. For example, the configs for the demo are provided here and include toggleterm integration and automatic buffer close after writing a git commit.
-
nvim-unception
A plugin that leverages Neovim's built-in RPC functionality to simplify opening files from within Neovim's terminal emulator without nesting sessions.
Flatten was inspired by nvim-unception, which accomplishes the same goal but can be difficult to configure in my opinion.
-
I am currently using https://github.com/mhinz/neovim-remote with this bit in my zshrc:
-
Thank you sir! The theme is very WIP but the palette is a combination of https://github.com/olivercederborg/poimandres.nvim and some colors from Catppuccin.
-
The start of my init.lua looks like this: ``` -- Bootstrap the package manager (lazy.nvim) local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath)