first commit

This commit is contained in:
Ale 2023-11-13 19:41:32 +01:00
commit cd3ca919f0
16 changed files with 2071 additions and 0 deletions

View file

@ -0,0 +1,5 @@
require("indent_blankline").setup {
-- for example, context is off by default, use this to turn it on
show_current_context = true,
show_current_context_start = true,
}

View file

@ -0,0 +1,7 @@
{ pkgs, config, lib, ...}:
{
programs.neovim = {
enable= true;
};
}