Skip to content

Commit

Permalink
fixup! 💄 materialpy
Browse files Browse the repository at this point in the history
  • Loading branch information
elythh committed Jan 23, 2024
1 parent b2ed827 commit 44d42d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion home/shared/bin/theme/material.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ _:
}
with open('/etc/nixos/home/shared/cols/material.nix', 'w') as file:
text=f"""{{}}:
rec {{{
rec {{
foreground = "{colmap['foreground'][1:]}";
background = "{colmap['background'][1:]}";
darker = "{colmap['darker'][1:]}";
Expand Down
4 changes: 2 additions & 2 deletions home/shared/bin/theme/materialpy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ _:
"""
file.write(text)
with open(f'{home}/.config/nvim/lua/core/material.lua', 'w') as file:
text=f"""return {{{
text=f"""return {{
foreground = "{colmap['onBackground']}",
background = "{colmap['background']}",
black = "{colmap['background']}",
Expand Down Expand Up @@ -146,7 +146,7 @@ _:
color7 = "{colmap['inverseSurface']}",
color15 = "{colmap['inverseSurface']}",
name = "material"
}}}
}}
"""
file.write(text)
''

0 comments on commit 44d42d3

Please sign in to comment.