24 lines
No EOL
546 B
Nix
24 lines
No EOL
546 B
Nix
{ 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;
|
|
};
|
|
extraPlugins = with pkgs.vimPlugins; [
|
|
everforest
|
|
];
|
|
};
|
|
} |