modules step 1

This commit is contained in:
Odweta
2026-01-11 18:11:54 +01:00
parent 968df831c7
commit dd5b4fe5ed
9 changed files with 305 additions and 198 deletions
+17
View File
@@ -0,0 +1,17 @@
{ pkgs, ... }:
{
programs.vim = {
enable = true;
plugins = with pkgs.vimPlugins; [ vim-airline ];
settings = { ignorecase = true; };
extraConfig = ''
set sw=2
set ts=2
set et
set smartindent
set number
syntax on
'';
};
}