dotfiles VS tangerine.nvim

Compare dotfiles vs tangerine.nvim and see what are their differences.

dotfiles

Configuration for Linux, i3, Kitty, Fish, Neovim and more (by Olical)

tangerine.nvim

๐ŸŠ Sweet Fennel integration for Neovim (by udayvir-singh)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
dotfiles tangerine.nvim
6 13
492 187
- -
8.9 7.5
2 days ago 19 days ago
Fennel Fennel
The Unlicense 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.

dotfiles

Posts with mentions or reviews of dotfiles. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-25.

tangerine.nvim

Posts with mentions or reviews of tangerine.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" } }, }
  • Setting Up Neovim with Fennel
    3 projects | dev.to | 6 Jun 2023
    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" } } }
  • Researching Lispy Neovim
    2 projects | news.ycombinator.com | 27 Nov 2022
  • 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
    You just need a fennel-to-lua transpiler like tangerine.nvim and you're set.
  • Vim 9 has been released
    5 projects | /r/linux | 28 Jun 2022
    You can use fennel in neovim with https://github.com/Olical/aniseed or https://github.com/udayvir-singh/tangerine.nvim :)
  • Nvim config in fennel?
    5 projects | /r/neovim | 28 Jun 2022
  • Plugin: forem.nvim (integration with dev.to)
    2 projects | /r/neovim | 27 Jun 2022
    I'm not using conjure, actually. I'm using tangerine, it has a command to evaluate fennel code too.
  • 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" } } }
  • One more nvim config with fennel, I am glad I moved (from vimscript)
    12 projects | /r/nvim | 12 Apr 2022
    There is also https://github.com/udayvir-singh/tangerine.nvim As I understand it itโ€™s a more lightweight more neovim focused fennel to lua transpiler which would act as a replacement for aniseed.

What are some alternatives?

When comparing dotfiles and tangerine.nvim you can also consider the following projects:

telescope.nvim - Find, Filter, Preview, Pick. All lua, all the time.

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

cajus-nvim - Basic config to transform your NVIM in a powerful Clojure IDE using fennel, clojure-lsp and conjure.

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

vim-sexp - Precision Editing for S-expressions

nvim-moonwalk - Use any language that compiles to Lua in your Neovim configuration

nvim-ts-rainbow - Rainbow parentheses for neovim using tree-sitter. Use https://sr.ht/~p00f/nvim-ts-rainbow instead

nvim.conf - datwaft's neovim configuration

lightspeed.nvim - deprecated in favor of leap.nvim

nvim-tetris - Bringing emacs' greatest feature to neovim - Tetris!

bytebase.com - Source for bytebase.com

zest.nvim - macros to configure neovim in fennel