hibiscus.nvim VS aniseed

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

hibiscus.nvim

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

aniseed

Neovim configuration and plugins in Fennel (Lisp compiled to Lua) (by Olical)
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 aniseed
7 36
100 595
- -
5.4 2.1
5 months ago 5 months ago
Fennel Fennel
MIT License The Unlicense
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.

aniseed

Posts with mentions or reviews of aniseed. 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
    aniseed
  • Why Fennel?
    12 projects | news.ycombinator.com | 13 Sep 2023
    You don't need to transpile it if you use https://github.com/Olical/aniseed
  • TimL: Clojure-like Lisp dialect that runs on and compiles down to Vimscript
    3 projects | news.ycombinator.com | 26 May 2023
    Something similar: Fennel (https://fennel-lang.org/) is a lisp that compiles into Lua, which nvim can use as plugins, so you can write nvim plugins in a lisp. Aniseed (https://github.com/Olical/aniseed) makes this really easy.
  • 916 Days of Emacs
    12 projects | news.ycombinator.com | 13 Apr 2023
  • The extensible vi layer for Emacs
    10 projects | news.ycombinator.com | 3 Mar 2023
    Just use vim. Yes, emacs has a lisp engine, but so does nvim[1]. Really, though, using vim properly means that it doesn't need to swallow the kitchen sink[2]. Just use vim.

    1: https://github.com/Olical/aniseed

    2: https://blog.djha.skin/p/emacs-users-im-okay-i-promise/

  • lazy.nvim and Aniseed for config environment
    5 projects | /r/neovim | 15 Jan 2023
    I use Aniseed to write my configs in Fennel, and I can't seem to find a way to get Aniseed bootstrapped and managed by lazy. Folke has said that fennel isn't supported in issues about hotpot and tangerine, but neither of them particularly help me solve my issue
  • Introducing LazyVim!
    12 projects | /r/neovim | 9 Jan 2023
    :!git clone https://github.com/Olical/aniseed /home/USER/.local/share/nvim/site/pack/packer/start/aniseed Cloning into '/home/USER/.local/share/nvim/site/pack/packer/start/aniseed'...
  • A config using fennel .
    4 projects | /r/neovim | 7 Nov 2022
    Have you tried aniseed ?
  • Swapping to Fennel
    12 projects | /r/neovim | 6 Nov 2022
    Aniseed: mostly an environment, it does handle configuration. It adds a lot of clojure features (another modern Lisp) such as a module system. It does seem to be slower to startup though, but I really like how its module system works and still use it for that reason alone. There's not much boilerplate code, just add it to the header
  • [help] How to write nvim plugins with Fennel?
    5 projects | /r/neovim | 23 Sep 2022
    The easiest would be to use aniseed: https://github.com/Olical/aniseed, it has a bootstrap script that downloads all the needed dependencies: https://github.com/Olical/aniseed, it also adds some syntax niceties and testing support. Here's an example of a plugin: https://github.com/katawful/kat.nvim

What are some alternatives?

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

tangerine.nvim - 🍊 Sweet Fennel integration for Neovim

hotpot.nvim - :stew: Carl Weathers #1 Neovim Plugin.

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

lightspeed.nvim - deprecated in favor of leap.nvim

vim-commentary - commentary.vim: comment stuff out

splitjoin.vim - Switch between single-line and multiline forms of code

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.

conjure - Interactive evaluation for Neovim (Clojure, Fennel, Janet, Racket, Hy, MIT Scheme, Guile, Python and more!)

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

lush.nvim - Create Neovim themes with real-time feedback, export anywhere.

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

denops.vim - 🐜 An ecosystem of Vim/Neovim which allows developers to write cross-platform plugins in Deno