hibiscus.nvim VS nyoom.nvim

Compare hibiscus.nvim vs nyoom.nvim and see what are their differences.

hibiscus.nvim

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

nyoom.nvim

A Neovim framework and doom emacs alternative for the stubborn martian hacker. Powered by fennel and the oxocarbon theme [Moved to: https://github.com/nyoom-engineering/nyoom.nvim] (by shaunsingh)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
hibiscus.nvim nyoom.nvim
7 12
100 517
- -
5.4 8.1
5 months ago over 1 year ago
Fennel Fennel
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.

nyoom.nvim

Posts with mentions or reviews of nyoom.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-09.
  • oxocarbon.nvim is now written in fennel!
    5 projects | /r/neovim | 9 Dec 2022
    The oxocarbon theme and color palette originally started off as something fun I'd use for https://github.com/shaunsingh/nyoom.nvim/tree/main, which was still just a set of dotfiles at the time and not the pet project it is today. I never imagined how many people would want to use it. Previously the theme was written in rust, mainly because I wanted to play around with nvim-oxi.
  • People drop your nvim .dotfile
    80 projects | /r/neovim | 20 Nov 2022
  • Swapping to Fennel
    12 projects | /r/neovim | 6 Nov 2022
    I use fennel as well, through my own WIP neovim framework (https://github.com/shaunsingh/nyoom.nvim). I highly recommend trying out lisps, it's not for everyone but personally for me I find it much easier to prototype code. It's reached the point where I end up using fennel for a good portion of my scripting tasks
  • 🎨 Colortils.nvim: Work with colors in neovim 🔧
    3 projects | /r/neovim | 29 Aug 2022
    Thats awesome! I have a simpler, non-gui version that I use based on hsluv in my dotfiles: https://github.com/shaunsingh/nyoom.nvim/blob/main/fnl/modules/ui/nyoom/colorutils/init.fnl.
  • Does anyone have a working Fennel config, preferably using Tangerine or Hotpot?
    3 projects | /r/neovim | 8 Aug 2022
  • Nyoom.nvim v0.4.0
    6 projects | /r/neovim | 30 Jul 2022
    Nyoom - It's a fun little name. Not supposed to mean anything images - Its a neovim config? not sure what you want me to do with it Reddit post - I mean I could write a page about it but thats just a repeat of the readme GitHub repo - https://github.com/shaunsingh/nyoom.nvim
  • 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.
  • Can vim become an emacs or is it already one or not?
    6 projects | /r/emacs | 10 May 2022
    My personal configuration is also written in fennel if you would like to take. look: https://github.com/shaunsingh/nyoom.nvim. Neovim's come a long way in what you can do with it. Fennel has a macro system as with any lisp, so you can make the syntax feel right at home with emacs https://github.com/shaunsingh/nyoom.nvim/tree/main/fnl/macros. You can even create dynamic-module like integrations with rust programs (see https://github.com/shaunsingh/nyoom.nvim/blob/main/fnl/parinfer/init.fnl, interacting with https://github.com/eraserhd/parinfer-rust/tree/master/src)
  • Nyoom.nvim: An fast & opinionated neovim config written in fennel
    5 projects | /r/neovim | 17 Feb 2022
    The config follows the ideals of Doom Emacs: - Minimalistic good looks inspired by modern editors. - Modular organization structure. (eventually, I want to make sets of packages into modules like doom does, but thats blocked by https://github.com/bakpakin/Fennel/issues/413. You can see some broken work here: https://github.com/shaunsingh/nyoom.nvim/tree/module-rewrite) - Opinionated, but not stubborn. Sensible defaults and curated opinions, but feel free to change them up (or entirely disable them!) - Your system, your rules. You know better. At least, Nyoom hopes so! There are no external dependencies, and there never will be.

What are some alternatives?

When comparing hibiscus.nvim and nyoom.nvim you can also consider the following projects:

tangerine.nvim - 🍊 Sweet Fennel integration for Neovim

nvim - Fennel powered neovim configuration.

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

NvChad - Blazing fast Neovim config providing solid defaults and a beautiful UI, enhancing your neovim experience.

vim-commentary - commentary.vim: comment stuff out

magic-kit - A starter kit for Conjure, Aniseed and Neovim

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.

highlight-current-n.nvim - Highlights the current /, ? or * match under your cursor when pressing n or N and gets out of the way afterwards.

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

colortils.nvim - Some color utils for neovim

vim-tmux-navigator - Seamless navigation between tmux panes and vim splits

NvStar - IDE Layer for Neovim, for simplicity lovers.