hibiscus.nvim VS vim-tmux-navigator

Compare hibiscus.nvim vs vim-tmux-navigator and see what are their differences.

hibiscus.nvim

:hibiscus: Flavored Fennel Macros for Neovim (by udayvir-singh)

vim-tmux-navigator

Seamless navigation between tmux panes and vim splits (by christoomey)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
hibiscus.nvim vim-tmux-navigator
7 42
100 4,912
- -
5.4 3.4
5 months ago 7 days ago
Fennel Vim Script
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

hibiscus.nvim

Posts with mentions or reviews of hibiscus.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-10.
  • Configuring Neovim with Fennel
    7 projects | dev.to | 10 Nov 2023
    local function bootstrap(url, ref) local name = url:gsub(".*/", "") local path = vim.fn.stdpath [[data]] .. "/lazy/" .. name if vim.fn.isdirectory(path) == 0 then print(name .. ": installing in data dir...") vim.fn.system { "git", "clone", url, path } if ref then vim.fn.system { "git", "-C", path, "checkout", ref } end vim.cmd [[redraw]] print(name .. ": finished installing") end vim.opt.runtimepath:prepend(path) end bootstrap("https://github.com/udayvir-singh/tangerine.nvim") -- Optional and only needed if you also want the macros bootstrap("https://github.com/udayvir-singh/hibiscus.nvim") require 'tangerine'.setup { target = vim.fn.stdpath [[data]] .. "/tangerine", -- compile files in &rtp rtpdirs = { "ftplugin", }, compiler = { -- disable popup showing compiled files verbose = false, -- compile every time changes are made to fennel files or on entering vim hooks = { "onsave", "oninit" } }, }
  • Swapping to Fennel
    12 projects | /r/neovim | 6 Nov 2022
    I can recommend using Fennel with Tangerine (integration) and Hibiscus (macros). My config here for inspiration.
  • Whenever I'm looking for plugins these days [OC]
    29 projects | /r/neovim | 7 Jul 2022
    For ease of use, you can use conjure for evaluating the code, cmp-conjure for nvim completions, hibiscus.nvim and nyoom.nvim macros for macros, and you can also use nyoom.nvim as a base config.
  • Hibiscus 🌺 -- Fennel eye-candy for neovim
    4 projects | /r/neovim | 21 May 2022
    Hibiscus.nvim:
  • Configurando Neovim com Fennel
    3 projects | dev.to | 20 May 2022
    local function bootstrap (name, url, path) if vim.fn.isdirectory(path) == 0 then print(name .. ": installing in data dir...") vim.fn.system {"git", "clone", "--depth", "1", url, path} vim.cmd [[redraw]] print(name .. ": finished installing") end end bootstrap ( "tangerine.nvim", "https://github.com/udayvir-singh/tangerine.nvim", vim.fn.stdpath "data" .. "/site/pack/packer/start/tangerine.nvim" ) bootstrap ( "hibiscus.nvim", "https://github.com/udayvir-singh/hibiscus.nvim", vim.fn.stdpath "data" .. "/site/pack/packer/start/hibiscus.nvim" ) require'tangerine'.setup{ compiler = { verbose = false, hooks = { "onsave", "oninit" } } }
  • Disable diagnostic while expanding luasnip snippets
    1 project | /r/neovim | 1 May 2022
    Fennel with hibiscus:
  • 🍊 Tangerine - Painless Fennel integration in Neovim
    2 projects | /r/neovim | 1 Apr 2022
    But, you can use another plugin of mine Hibiscus which contains bulk of zest and aniseed macros.

vim-tmux-navigator

Posts with mentions or reviews of vim-tmux-navigator. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-27.
  • How would I get the name of the program running in the window that zellij run was ran in?
    2 projects | /r/zellij | 27 Nov 2023
    I'm a tmux migrant and wanted functionality similar to tmux-navigator for vim. In short, it lets me bind the same key combination to change vim splits and tmux scripts that either switch panes or forward the input to the vim plugin that does one of the other. Say you have an empty pane, a pane with vim with two splits and a third pane pane all in a line. The first time the user wants to move focus, vim is not running so the script simply moves focus in tmux. The scond time the user presses the bind, it's passed to vim and the vim plugin sees you have a split to move to so you move focus between splits. The third press the plugin realizes that there are no more panes, so it moves you to the final tmux pane.
  • Navigate between bspwm windows and kitty terminal panes using the same keybinds?
    1 project | /r/bspwm | 23 Jul 2023
    There's also a vim plugin that applies the same idea but with vim windows and tmux panes: https://github.com/christoomey/vim-tmux-navigator.
  • question about mappings
    1 project | /r/neovim | 29 Jun 2023
    Since you're using Tmux check out vim-tmux-navigator which allows for seamless navigation between tmux and (neo)vim panes.
  • termux style🖤
    2 projects | /r/neovim | 21 Apr 2023
    For example, the killer plugin in tmux for me would be vim-tmux-navigator which allows you to switch seemlessly between Vim and tmux. The reason why you would want this is because tmux is a better option than using Vim's built-in terminal.
  • Terminal plugins vs tmux pane
    1 project | /r/neovim | 18 Apr 2023
    With https://github.com/christoomey/vim-tmux-navigator I don't see the need to use Neovim's terminal. Neovim's terminal somehow seems slower and my terminal keybindings didn't quite work.
  • Install plugin in LazyVim
    1 project | /r/neovim | 20 Feb 2023
    Hi, I just installed lazyvim yesterday and want to install the following plugin vim-tmux navigator in lazyvim. I am new to neovim. Any guidance would be very helpful. Thanks.
  • wow: Tmux navigation works out-of-the-box!
    3 projects | /r/AstroNvim | 8 Feb 2023
  • Plugin for following logs?
    2 projects | /r/neovim | 23 Jan 2023
    Might I suggest tmux? You'd get all you needed and there is a nice plugin https://github.com/christoomey/vim-tmux-navigator that lets you set up a single layer of movement keys (i use ctrl-h/j/k/l) to move around between both nvim splits and tmux splits.
  • using nvim + tmux
    6 projects | /r/neovim | 10 Jan 2023
    To begin, you should check out tmux plugins manger/tpm, which will feel pretty familiar if you're used to working with nvim plugins. Once you have that up and running you can plug vim-tmux-navigator, which allows you to move smoothly through tmux and nvim panes using ctrl-h/j/k/l. There are various other tmux plugins that are super-useful for customizing your tmux workspace.
  • Any lua implementation of floaterm
    1 project | /r/neovim | 11 Dec 2022
    Use tmux for terminal management. I honestly held out for a while, but eventually bit the bullet and it’s so nice, I’d never go back. Especially with https://github.com/christoomey/vim-tmux-navigator

What are some alternatives?

When comparing hibiscus.nvim and vim-tmux-navigator you can also consider the following projects:

tangerine.nvim - 🍊 Sweet Fennel integration for Neovim

tmux.nvim - A tiny plugin for seamless switching between vim splits and tmux panes

fennel-language-server - Fennel language server protocol (LSP) support.

iterm2

vim-commentary - commentary.vim: comment stuff out

i3-resurrect - Simple solution to saving and restoring i3 workspaces

Lua - Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.

tilix - A tiling terminal emulator for Linux using GTK+ 3

aniseed - Neovim configuration and plugins in Fennel (Lisp compiled to Lua)

alpha-nvim - a lua powered greeter like vim-startify / dashboard-nvim

vim-easy-align - :sunflower: A Vim alignment plugin

tmux-suspend - Plugin that lets you suspend local tmux session, so that you can work with nested remote tmux session painlessly.