Skip to content

Blazing fast, configurable, minimal and lispy neovim config written in Fennel. Base config for users to extend and add upon, leading to a more unique editing experience. (πŸš€)

License

Notifications You must be signed in to change notification settings

shofel/nyoom.nvim

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

The purpose of this fork

This is my personal neovim config, which was bootstrapped from shaunsingh/nyoom.

The differences:

  • I think in the original nyoom the macros are overused. Instead of huge macros I've got just a few helper functions.
  • I dont use rust in my everyday life, and this config does not requires rust toolchain.

Differences in plugins

  • I prefer fzf-lua instead of telescope
  • cmp in nyoom was broken for me, and I switched it to coq, which can work without configuration

Modularity

  • Packer provides us with modularity which is enough for me: the config is one expression per plugin.
  • The only thing I'm lacking is a better management for keymaps.

./fresh-start

  • run ./fresh-start script when you've just cloned the repo and need to bootstrap packer, hotpot, and their caches

Nyoom.nvim

Fennel

Stars GitHub Issues Forks License

These are your father's parentheses.
Elegant weapons for a more... civilized age.
β€” xkcd/297

This config was a response to new configs that pop up, with very abstracted and complex codebases, such as NvChad. They try to be a one-size-fits-all config. NvChad and LunarVim both try to fit as much overall functionality as possible and needlessly lazy load everything, when it really isn't needed. Complex codebases lead to less freedom for end-user extensibility. Try forking NvChad and making your own configuration out of it. Everything is tied to the userConfig, and you rely on the maintainer of said code to implement features.

Nyoom.nvim provides a solution to these problems by providing only the necessary code in order to make a functioning configuration. The end goal of nyoom.nvim is to be used as a base config for users to extend and add upon, leading to a more unique editing experience. Its relatively small and simple, offers the bare minimum needed plugins to have a powerful config, and is suited to my needs, but can just as easily be suited to yours!

I recommend not to clone and directly install this config, but to fork it, inspect the code, and adjust it to your liking. The best neovim configuration is what you make, and this config is only supposed to provide you the tools to do so.

Install

Dependencies

The only dependencies are neovim-nightly and git.

Regular:

Install the following dependencies:

  • neovim-nightly (or neovim stable)
  • ripgrep (optional, for telescope)
  • nodejs (optional, for copilot)
  • fennel + fnlfmt (not required, but recommended)
  • font with nerdfont icons
git clone --depth 1 https://github.com/shaunsingh/nyoom.nvim.git ~/.config/nvim 
nvim

Optionally run :FnlCompile! (the fennel is precompiled, but you can do it for fun!), then run :PackerSync

Using nix:

Requires nix version > 21.11, with experimental features flakes and nix-commands enabled

git clone --depth 1 https://github.com/shaunsingh/nyoom.nvim.git && cd nyoom.nvim
nix develop

Then run nvim as usual, and :PackerSync to update/install plugins

Design

Nyoom.nvim is designed against the mantras of doom-emacs: (shamelessly copy pasted)

  • Gotta go fast. Startup and run-time performance are priorities.
  • Close to metal. There's less between you and vanilla neovim by design. That's less to grok and less to work around when you tinker.
  • Opinionated, but not stubborn. Nyoom (and Doom) are about reasonable defaults and curated opinions, but use as little or as much of it as you like.
  • Your system, your rules. You know better. At least, Nyoom hopes so! There are no external dependencies, and never will be.

It also aligns with many of Doom's features:

  • Minimalistic good looks inspired by modern editors.
  • A modular organizational structure for separating concerns in your config.
  • A standard library designed to simplify your fennel bike shedding.
  • A declarative package management system (inspired by use-package, powered by Packer.nvim). Install packages from anywhere, and pin them to any commit.
  • A Space(vim)-esque keybinding scheme, centered around leader and localleader prefix keys (SPC and SPCm).
  • Project search (and replace) utilities, powered by ripgrep, and telescope.

However, it also disagrees with some of those ideals

  • Packages are not pinned to commits by default. Unlike Doom, this configuration includes fewer than 20 packages by default and breaking changes are usually few and far between. Everything is rolling release, and if a breaking change does occur I will push a fix within a day (pinky promise!). Of course, you are free to pin packages yourself (and use :PackerSnapshot).

Credits

  • David Guevara For getting me into fennel, and for some of his beautiful macros. Without him Nyoom wouldn't exist!
  • Oliver Caldwell For his excellent work on Aniseed, Conjure, and making fennel feel like a first class language in neovim

Changelog

v0.3.1 - Released 5/03/2022

  • Removed options for fennel compilers and switched solely to Tangerine Hotpot. Fennel is still seamlessly automatically.
  • More fennel! Init is rewritten in fennel (update: This caused the config to load after runtime files, which meant that filetype.lua stopped working. I've sinced reverted back to init.lua for now), and lua dependencies (md5 lib) were removed.
  • Refactored the entire config. New directory structure, parted out macros, and cleaned up code.
  • Statusline has been added! Thin and light global statusline to align with nyoom's philosphies.
  • Lsp/Cmp configs have been re-done. Lsp is now much quicker to load and is a much cleaner implementation. Cmp is much quicker, integrates properly with copilot, and everything was reworked from the ground up.
  • Improved highlighting macros: Highlights are now applied via nvim_set_hl.
  • Improved startuptime by 20-30ms: decreased lazy loading and optimized code.
  • Improved keybinding support: macros for buffer-local mappings and which-key documentation have been added. Nyoom default bindings are now documented within which-key
  • Improved treesitter integration. Textobjects and support for conjure evaluation using treesitter have been added.

Note: The reasoning for the change in compiler support is that its far more seamless for the user, it implements a lua bytecode cache (removing the need for impatient.nvim), and its still faster than tangerine or aniseed. Users are welcome to paste in some code from an older version of Nyoom and adjust the compiler to their liking. In fact, I encourage you to try it out if you prefer tangerine or aniseed, its a great intro into basic fennel syntax!

Showcase

Fast loading and package management using Nyoom! macros and Packer.nvim

image

Lispy editing using conjure and nvim-parinfer

Screen Shot 2022-05-04 at 10 49 41 AM

parinfer.mov

Lightweight statusline written in fennel

image

Note-taking and Getting Things Done with neorg

Screen Shot 2022-05-04 at 10 55 31 AM

Syntax highlighting and Error checking with Neovim's builtin LSP, lspconfig, trouble.nvim and nvim-treesitter.

unknown-2

lsp

treesitter.mov

Quick Completion and Wildmenu powered by nvim-cmp and copilot.lua

Screen Shot 2022-05-04 at 11 03 19 AM

Screen Shot 2022-05-04 at 11 03 05 AM

Pretty notifications and focused editing using TrueZen and nvim-notify

Screen Shot 2022-05-04 at 11 04 52 AM

Screen Shot 2022-05-04 at 11 04 38 AM

Informative Keybinds, Native Fuzzy Finding, and fast file history using nvim-telescope, telescope-fzf-native.nvim, telescope-frecency.nvim, sqlite.lua and which-key.nvim

image

telescope.mov

Themeing with nvim-base16 and base16-carbon-dark

image

Magit-like commits with Neogit

image

Why fennel?

Fennel is a programming language that brings together the speed, simplicity, and reach of Lua with the flexibility of a lisp syntax and macro system. Macros are how lisps accomplish metaprogramming. You’ll see a lot of people treat lisp macros with a kind of mystical reverence. While several other languages have macro systems, the power of macros in lisps stem from allowance of lisps to you to write programs using the same notation you use for data structures. Remember: code is data, and we just need to manipulate data.

While people largely over exaggerate the usefulness of macros, there are a few places where macros shine, and configurations are one of them. Utilizing macros, we can essentially create our own syntax. For example, lets take a look at the set! macro I've used. set! is used for vim.opt options. For example, (set! mouse :a) expands to vim.opt["mouse"]="a". If a string or number isn't passed to set!, it will assume true. e.g. (set! list) will expand to vim.opt["list"]=true. Similarly if the option starts with no, it will assume false e.g. (set! noru) will expand to vim.opt["ru"]=false.

With the macros provided, you can configure neovim just as easily, or dare I say easier than you can with Lua or vimscript, while retaining the performance benefits of LuaJIT.

All the magic happens in the fnl/ folder. Some files to check out:

  • init.fnl: Same as your init.lua would be, just in fennel! Disables some plugins and loads the core config
  • pack/: This is where all your plugins go. The pack.fnl file is in charge of configuring packer, installing, as well as loading plugins
  • core/defs.fnl: This is where neovim settings go.
  • core/maps.fnl: This is where mappings go.
  • macros/: In lisps, macros allow the user to define arbitrary functions that convert certain Lisp forms into different forms before evaluating or compiling them. This folder contains all the macros that I (and a few others, thanks David and Kat!) have written to help you out on your neovim journey. I don't recommend touching this file unless you know what you're doing

Learning Fennel

For most people, chances are you haven't even heard of fennel before. So where should you start?

  1. Read through the Documentation
  2. Install fennel yourself! (Skip the part where it goes over adding fennel support to your editor, that's what this project is for :p)
  3. Learn lua first. I recommend reading through the Neovim lua guide as well.
  4. Learn fennel
  5. Go over the Style guide.
  6. Learn macros.

If you have trouble configuring neovim to your needs, check out Antifennel to see how lua code compiles back to fennel! However, the generated code isn't always the cleanest, so its recommend you use it as a last resort. If you need any help, feel free to reach out to me via email or discord, and be sure to join the Conjure Discord too!

When Fiddling with Fennel Code

While fiddling with the config, you can check if the things are not broken yet:

  1. evaluate form you just written (<localleader>,er)
  2. evaluate buffer (<localleader>,eb)
  3. start another neovim with a vim command: :!neovim --headless +PlugSync

Notes

If you have an issue with a plugin in Nyoom.nvim, first you should report it to Nyoom.nvim to see if it's an issue with it. Please don't bother package maintainers with issues that are caused by my configs, and vice versa. I'm new to fennel, so don't hesitate to let me know my lisp-fu sucks!

About

Blazing fast, configurable, minimal and lispy neovim config written in Fennel. Base config for users to extend and add upon, leading to a more unique editing experience. (πŸš€)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Fennel 95.6%
  • Nix 3.0%
  • Lua 1.4%