nix/home-manager/common/software/cli/nixvim.nix

24 lines
546 B
Nix
Raw Normal View History

2024-02-08 03:17:11 +01:00
{ inputs, pkgs, config, lib, ... }: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
];
programs.nixvim = {
enable = true;
options = {
number = true;
shiftwidth = 2;
};
plugins = {
lualine.enable = true;
treesitter.enable = true;
fugitive.enable = true;
};
colorschemes = {
tokyonight.enable = true;
};
2024-02-08 03:24:24 +01:00
extraPlugins = with pkgs.vimPlugins; [
2024-02-08 03:17:11 +01:00
everforest
];
};
}