{ inputs, pkgs, config, lib, ... }: { imports = [ inputs.nixvim.homeManagerModules.nixvim ]; programs.nixvim = { enable = true; options = { number = true; shiftwidth = 2; }; plugins = { }; colorschemes = { tokyonight.enable = true; }; extraPlugins = with pkgs.vimPlugins; [ everforest ]; }; }