dotfiles/modules/neovim.nix

10 lines
156 B
Nix

{ config, pkgs, ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
# extraLuaConfig = '' '';
# extraPackages = [ ];
};
}