{ config, lib, ... }: with lib; let cfg = config.local.baseline; in { config = { home.sessionVariables.EDITOR = "nvim"; programs.neovim = { enable = true; viAlias = true; vimAlias = true; withRuby = false; withPython3 = false; extraConfig = '' set number " Enable line numbering set relativenumber " Enable relative line numbering set tabstop=4 " Set tap stop to 4 set shiftwidth=4 " Set shift width to 4 (same as tabstop) set viminfo= " No tracking ''; }; }; }