Add themeing vim to aaa_lateload so it is run last
diff --git a/modules/neovim/aaa_lateload/default.nix b/modules/neovim/aaa_lateload/default.nix
new file mode 100644
index 0000000..71de9c1
--- /dev/null
+++ b/modules/neovim/aaa_lateload/default.nix
@@ -0,0 +1,5 @@
+{
+  programs.neovim.extraConfig = ''
+  ${builtins.readFile ./retheme.vim} 
+  '';
+}
diff --git a/modules/neovim/aaa_lateload/retheme.vim b/modules/neovim/aaa_lateload/retheme.vim
new file mode 100644
index 0000000..a568795
--- /dev/null
+++ b/modules/neovim/aaa_lateload/retheme.vim
@@ -0,0 +1,2 @@
+colorscheme onehalfdark
+" We need to call our theme autocommands, this is the easiest way to do that