refactor colors and options

preparing for light mode, even though specializations aren't working
This commit is contained in:
Noah Masur
2022-11-02 21:29:14 -04:00
parent b2850e8b79
commit 41d289c5db
19 changed files with 513 additions and 492 deletions

View File

@ -1 +0,0 @@
indent_type = "Spaces"

View File

@ -15,7 +15,12 @@
source = ./lua;
recursive = true; # Allows adding more files
};
"nvim/lua/packer/colors.lua".source = config.colorscheme.neovimConfig;
"nvim/lua/packer/colors.lua".source = config.theme.colors.neovimConfig;
"nvim/lua/background.lua".text = ''
vim.cmd("set background=${
if config.theme.dark == true then "dark" else "light"
}")
'';
};
programs.git.extraConfig.core.editor = "nvim";

View File

@ -1,3 +1,4 @@
require("packer_init")
require("settings")
require("keybinds")
require("background")