NixVim is a Neovim distribution built around Nix modules. It is distributed as a Nix flake, and configured through Nix, all while leaving room for your plugins and your vimrc.
Here is a simple configuration that uses gruvbox as the colorscheme and uses the lightline plugin:
{
programs.nixvim = {
enable = true;
colorschemes.gruvbox.enable = true;
plugins.lightline.enable = true;
};
}
When we do this, lightline will be set up to a sensible default, and will use gruvbox as the colorscheme, no extra configuration required!
If you have any question, please use the discussions page! Alternatively, join the Matrix channel at #nixvim:matrix.org!
NixVim now ships with flake-compat
, which makes it usable from any system.
To install it, edit your home-manager (or NixOS) configuration:
{ pkgs, lib, ... }:
let
nixvim = import (lib.fetchGit {
url = "https://github.com/pta2002/nixvim";
});
in
{
imports = [
# For home-manager
nixvim.homeManagerModules.nixvim
# For NixOS
nixvim.nixosModules.nixvim
# For nix-darwin
nixvim.nixDarwinModules.nixvim
];
programs.nixvim.enable = true;
}
This is the recommended method if you are already using flakes to manage your
sysyem. To enable flakes, add this to /etc/nixos/configuration.nix
{ pkgs, lib, ... }:
{
nix = {
package = pkgs.nixFlakes;
extraOptions = lib.optionalString (config.nix.package == pkgs.nixFlakes)
"experimental-features = nix-command flakes";
};
}
Now, you need to import the module. If your system is already configured using flakes, just add the nixvim input:
{
# ...
inputs.nixvim.url = github:pta2002/nixvim;
}
You can now access the module using inputs.nixvim.homeManagerModules.nixvim
,
for a home-manager installation, inputs.nixvim.nixosModules.nixvim
, for NixOS,
and inputs.nixvim.nixDarwinModules.nixvim
for nix-darwin.
NixVim can be used in four ways: through the home-manager, nix-darwin, and NixOS modules,
and through the makeNixvim
function. To use the modules, just import the
nixvim.homeManagerModules.nixvim
, nixvim.nixDarwinModules.nixvim
, and
nixvim.nixosModules.nixvim
modules, depending on which system
you're using.
If you want to use it standalone, you can use the makeNixvim
function:
{ pkgs, nixvim, ... }: {
environment.systemModules = [
(nixvim.legacyPackages."${system}".makeNixvim {
colorschemes.gruvbox.enable = true;
})
];
}
Alternatively if you want a minimal flake to allow building a custom neovim you can use the following:
{
description = "A very basic flake";
inputs.nixvim.url = "github:pta2002/nixvim";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
self,
nixpkgs,
nixvim,
flake-utils,
}: let
config = {
colorschemes.gruvbox.enable = true;
};
in
flake-utils.lib.eachDefaultSystem (system: let
nixvim' = nixvim.legacyPackages."${system}";
nvim = nixvim'.makeNixvim config;
in {
packages = {
inherit nvim;
default = nvim;
};
});
}
You can then run neovim using nix run .# -- <file>
. This can be useful to test
config changes easily.
You may want more control over the nixvim modules like:
- Splitting your configuration in multiple files
- Adding custom nix modules to enhance nixvim
- Change the nixpkgs used by nixvim
In this case you can use the makeNixvimWithModule
function.
It takes a set with the following keys:
pkgs
: The nixpkgs to use (defaults to the nixpkgs pointed at by the nixvim flake)module
: The nix module definition used to extend nixvim. This is useful to pass additional module machinery likeoptions
orimports
.
When you build the module (probably using home-manager), it will install all your plugins and generate a lua config for NeoVim with all the options specified. Because it uses lua, this ensures that your configuration will load as fast as possible.
Since everything is disabled by default, it will be as snappy as you want it to be.
Documentation is available on this project's GitHub Pages page: https://pta2002.github.io/nixvim
After you have installed NixVim, you will no doubt want to enable some plugins. Plugins are based on a modules system, similarly to NixOS and Home Manager.
So, to enable some supported plugin, all you have to do is enable its module:
{
programs.nixvim = {
plugins.lightline.enable = true;
};
}
Of course, if that was everything there wouldn't be much point to NixVim, you'd just use a regular plugin manager. All options for supported plugins are exposed as options of that module. For now, there is no documentation yet, but there are detailed explanations in the source code. Detailed documentation for every module is planned.
Not all plugins will have modules, so you might still want to fetch some. This
is not a problem, just use the extraPlugins
option:
{
programs.nixvim = {
extraPlugins = with pkgs.vimPlugins; [
vim-nix
];
};
}
However, if you find yourself doing this a lot, please consider contributing or requesting a module!
Colorschemes are provided within a different scope:
{
programs.nixvim = {
# Enable gruvbox
colorschemes.gruvbox.enable = true;
};
}
Just like with normal plugins, extra colorscheme options are provided as part of its module.
If your colorscheme isn't provided as a module, install it using
extraPlugins
and set it using the colorscheme
option:
{
programs.nixvim = {
extraPlugins = [ pkgs.vimPlugins.gruvbox ];
colorscheme = "gruvbox";
};
}
All NixVim supported plugins will, by default, use the main colorscheme you set, though this can be overriden in a per-plugin basis.
NeoVim has a lot of configuration options. You can find a list of them by doing
:h option-list
from within NeoVim.
All of these are configurable from within NixVim. All you have to do is set the
options
attribute:
{
programs.nixvim = {
options = {
number = true; # Show line numbers
relativenumber = true; # Show relative line numbers
shiftwidth = 2; # Tab width should be 2
};
};
}
Please note that to, for example, disable numbers you would not set
options.nonumber
to true, you'd set options.number
to false.
It is fully possible to define key mappings from within NixVim. This is done
using the maps
attribute:
{
programs.nixvim = {
maps = {
normalVisualOp.";" = ":";
normal."<leader>m" = {
silent = true;
action = "<cmd>make<CR>";
};
};
};
}
This is equivalent to this vimscript:
noremap ; :
nnoremap <leader>m <silent> <cmd>make<CR>
This table describes all modes for the maps
option:
NixVim | NeoVim |
---|---|
normal | Normal mode |
insert | Insert mode |
visual | Visual and Select mode |
select | Select mode |
terminal | Terminal mode |
normalVisualOp | Normal, visual, select and operator-pending mode |
visualOnly | Visual mode only, without select |
operator | Operator-pending mode |
insertCommand | Insert and command-line mode |
lang | Insert, command-line and lang-arg mode |
command | Command-line mode |
The map options can be set to either a string, containing just the action, or to a set describing additional options:
NixVim | Default | VimScript |
---|---|---|
silent | false | <silent> |
nowait | false | <silent> |
script | false | <script> |
expr | false | <expr> |
unique | false | <unique> |
noremap | true | Use the 'noremap' variant of the mapping |
action | N/A | Action to execute |
Sometimes you might want to define a global variable, for example to set the
leader key. This is easy with the globals
attribute:
{
programs.nixvim = {
globals.mapleader = ","; # Sets the leader key to comma
};
}
Sometimes NixVim won't be able to provide for all your customization needs.
In these cases, the extraConfigVim
and extraConfigLua
options are
provided:
{
programs.nixvim = {
extraConfigLua = '''
-- Print a little welcome message when nvim is opened!
print("Hello world!")
''';
};
}
If you feel like what you are doing manually should be supported in NixVim, please open an issue.