Select a color scheme for your Dotfyle experience

Issue #40

Issue #40
comments

Email Newsletter

Sign up with your email address to receive an email when a new issue of This Week in Neovim is available

neovim-core-updates-{#core}">

Neovim Core updates {#core}

Updates of Neovim itself, which are available on Neovim nightly.

Important: some updates might be missing from this week content. If you want to be sure to always keep up to date with what’s going on in Neovim Core, you are strongly advised to have a look to these places:

neovim-plugin-community-updates-{#plugins}">

Neovim Plugin Community updates {#plugins}

Neovim is full of active plugins. This section is about the community and what is going on.

guides,-tours,-articles,-etc-{#guides}">

Guides, tours, articles, etc. {#guides}

Neovim 0.9 New Features

Elijah Manor published a new YouTube video Neovim 0.9 New Features where he highlights several new features from the recent Neovim 0.9.0 release. The contents from the slides can be found from the following gist.

new-plugins-{#new-plugins}">

New plugins {#new-plugins}

bufignore.nvim

Unlist hidden buffers that are git ignored.

bufignore-plugin.nvim

Introducing bufignore.nvim, a efficient plugin that helps you keep your buffer list tidy by automatically unlisting hidden Git ignored files. If you've ever found yourself annoyed by a cluttered buffer list, for example, when working with files within .git or node_modules, then this plugin is for you.

Bufignore comes with several features to help keep your buffer in check, including efficient event processing, support for changing the current working directory, and a customizable callback function to further configure which buffers should be unlisted. It works out-of-the-box without the need for additional configuration.

mini.colors

mini.colors (new module of mini.nvim) contains functionality to tweak and save any color scheme. It can create colorscheme object with methods to invert/set/modify/etc. lightness/saturation/hue/temperature/etc. of foreground/background/all colors, infer cterm attributes, add transparency, save to a file and more. Also has functionality for interactive experiments and animation of transition between color schemes.

nvim-alt-substitute

nvim-alt-substitute

A substitute of vim's :substitute that uses lua patterns instead of vim regex. Supports incremental preview.

For those of us who started using nvim after the introduction of lua and therefore never learned vimscript. (And do not want to learn it just for :substitute.)

Features

  • Incremental preview of the substitution.
  • Supports ranges, with % as default.
  • The g flag is supported and works like with :substitute.
  • New flags: i for case-insensitive search and f for fixed strings (literal strings).
:%s /\(\w\+\)\d\+/\1/g          -- :substitute
:S /(%w+)%d+/%1/g               -- :AltSubstitute
deviceModel2020 -> deviceModel  -- effect

Links

fuzzy_slash.nvim

A new plugin by @IndianBoy42, that is a fuzzy version of the search command (/).

neoai.nvim

neoai.nvim

A new plugin for Neovim hooking up to OpenAI to implement various different situations. By @Bryley.

did-you-know?-{#tips}">

Did you know? {#tips}

Nothing for this week!

special-thanks-{#special-thanks}">

Special thanks {#special-thanks}

These people help contributing various updates about Neovim and its ecosystem! Thanks for your contributions! ❤️

want-to-contribute?-{#contribute}">

Want to contribute? {#contribute}

You have noticed something missing that you saw lately? Do not keep the candies for yourself and please feel free to share with us! You can open a PR at This Week In Neovim Contents.

Feel free to read how to contribute to get started.

CC-BY-SA