initial commit

This commit is contained in:
Roel de Cort 2024-04-13 00:18:36 +02:00
parent 21c876db7c
commit 75abec30f9
4 changed files with 521 additions and 0 deletions

6
config/default.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, lib, ...}: {
imports = [
./settings.nix
];
}

18
config/settings.nix Normal file
View file

@ -0,0 +1,18 @@
{
config = {
opts = {
number = true;
relativenumber = true;
tabstop = 2;
softtabstop = 2;
showtabline = 2;
expandtab = true;
smartindent = true;
shiftwidth = 2;
breakindent = true;
};
};
}