Added nixvim

This commit is contained in:
Aleksandr Lebedev 2024-11-21 16:26:12 +01:00
parent e9356e164c
commit bf8b990a71
5 changed files with 329 additions and 9 deletions

20
nixos/nixvim/default.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs, inputs, ... }:
{
imports = [
inputs.nixvim.homeManagerModules.nixvim
];
programs.nixvim = {
enable = true;
colorschemes.catppuccin.enable = true;
plugins = {
};
opts = {
number = true;
shiftwidth = 4;
relativenumber = false;
};
};
}