nix/home-manager/common/software/cli/nixvim.nix
2024-02-08 11:40:15 +09:00

19 lines
No EOL
406 B
Nix

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