git config

This commit is contained in:
Michael Thomson 2024-09-09 14:02:00 -04:00
parent 7139def62c
commit b8cbda3f63
3 changed files with 13 additions and 1 deletions

View File

@ -2,6 +2,7 @@
{ {
imports = [ imports = [
../../modules/home-manager/git
../../modules/home-manager/neovim ../../modules/home-manager/neovim
../../modules/home-manager/emacs ../../modules/home-manager/emacs
../../modules/home-manager/wezterm ../../modules/home-manager/wezterm

View File

@ -5,5 +5,16 @@
enable = true; enable = true;
userName = "Michael Thomson"; userName = "Michael Thomson";
userEmail = "michael@michaelthomson.dev"; userEmail = "michael@michaelthomson.dev";
includes = [
{
condition = "gitdir:~/dev/work/";
contents = {
user = {
email = "mthomson@konradgroup.com";
name = "Michael Thomson";
};
};
}
];
}; };
} }

View File

@ -88,7 +88,7 @@ return {
lsp.lua_ls.setup({}) lsp.lua_ls.setup({})
lsp.nil_ls.setup({}) lsp.nil_ls.setup({})
lsp.clangd.setup({}) lsp.ccls.setup({})
lsp.astro.setup({}) lsp.astro.setup({})
end, end,
}, },