add glow
theme
This commit is contained in:
parent
c53ff86cb4
commit
9ff7fb3048
4 changed files with 223 additions and 5 deletions
7
config/README.md
Normal file
7
config/README.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# config
|
||||||
|
|
||||||
|
This directory contains application configuration files.
|
||||||
|
|
||||||
|
## Glow
|
||||||
|
|
||||||
|
The Glow theme provided in this repository is from [catppuccin/glamour](https://github.com/catppuccin/glamour/blob/f410083af1e9b2418bcd73dbbbc987461d4aa292/themes/catppuccin-mocha.json).
|
8
config/glow.config.yml
Normal file
8
config/glow.config.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# style name or JSON path (default "auto")
|
||||||
|
style: "$HOME/.config/glow/theme.json"
|
||||||
|
# mouse support (TUI-mode only)
|
||||||
|
mouse: false
|
||||||
|
# use pager to display markdown
|
||||||
|
pager: false
|
||||||
|
# word-wrap at width
|
||||||
|
width: 180
|
199
config/glow.theme.json
Normal file
199
config/glow.theme.json
Normal file
|
@ -0,0 +1,199 @@
|
||||||
|
{
|
||||||
|
"document": {
|
||||||
|
"block_prefix": "\n",
|
||||||
|
"block_suffix": "\n",
|
||||||
|
"color": "#cdd6f4",
|
||||||
|
"margin": 2
|
||||||
|
},
|
||||||
|
"block_quote": {
|
||||||
|
"indent": 1,
|
||||||
|
"indent_token": "│ "
|
||||||
|
},
|
||||||
|
"paragraph": {},
|
||||||
|
"list": {
|
||||||
|
"level_indent": 2
|
||||||
|
},
|
||||||
|
"heading": {
|
||||||
|
"block_suffix": "\n",
|
||||||
|
"color": "#cdd6f4",
|
||||||
|
"bold": true
|
||||||
|
},
|
||||||
|
"h1": {
|
||||||
|
"prefix": "▓▓▓ ",
|
||||||
|
"suffix": " ",
|
||||||
|
"color": "#f38ba8",
|
||||||
|
"bold": true
|
||||||
|
},
|
||||||
|
"h2": {
|
||||||
|
"prefix": "▓▓▓▓ ",
|
||||||
|
"color": "#fab387"
|
||||||
|
},
|
||||||
|
"h3": {
|
||||||
|
"prefix": "▓▓▓▓▓ ",
|
||||||
|
"color": "#f9e2af"
|
||||||
|
},
|
||||||
|
"h4": {
|
||||||
|
"prefix": "▓▓▓▓▓▓ ",
|
||||||
|
"color": "#a6e3a1"
|
||||||
|
},
|
||||||
|
"h5": {
|
||||||
|
"prefix": "▓▓▓▓▓▓▓ ",
|
||||||
|
"color": "#74c7ec"
|
||||||
|
},
|
||||||
|
"h6": {
|
||||||
|
"prefix": "▓▓▓▓▓▓▓▓ ",
|
||||||
|
"color": "#b4befe"
|
||||||
|
},
|
||||||
|
"text": {},
|
||||||
|
"strikethrough": {
|
||||||
|
"crossed_out": true
|
||||||
|
},
|
||||||
|
"emph": {
|
||||||
|
"italic": true
|
||||||
|
},
|
||||||
|
"strong": {
|
||||||
|
"bold": true
|
||||||
|
},
|
||||||
|
"hr": {
|
||||||
|
"color": "#6c7086",
|
||||||
|
"format": "\n--------\n"
|
||||||
|
},
|
||||||
|
"item": {
|
||||||
|
"block_prefix": "• "
|
||||||
|
},
|
||||||
|
"enumeration": {
|
||||||
|
"block_prefix": ". "
|
||||||
|
},
|
||||||
|
"task": {
|
||||||
|
"ticked": "[✓] ",
|
||||||
|
"unticked": "[ ] "
|
||||||
|
},
|
||||||
|
"link": {
|
||||||
|
"color": "#89b4fa",
|
||||||
|
"underline": true
|
||||||
|
},
|
||||||
|
"link_text": {
|
||||||
|
"color": "#b4befe",
|
||||||
|
"bold": true
|
||||||
|
},
|
||||||
|
"image": {
|
||||||
|
"color": "#89b4fa",
|
||||||
|
"underline": true
|
||||||
|
},
|
||||||
|
"image_text": {
|
||||||
|
"color": "#b4befe",
|
||||||
|
"format": "Image: {{.text}} →"
|
||||||
|
},
|
||||||
|
"code": {
|
||||||
|
"prefix": " ",
|
||||||
|
"suffix": " ",
|
||||||
|
"color": "#eba0ac",
|
||||||
|
"background_color": "#181825"
|
||||||
|
},
|
||||||
|
"code_block": {
|
||||||
|
"color": "#181825",
|
||||||
|
"margin": 2,
|
||||||
|
"chroma": {
|
||||||
|
"text": {
|
||||||
|
"color": "#cdd6f4"
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"color": "#cdd6f4",
|
||||||
|
"background_color": "#f38ba8"
|
||||||
|
},
|
||||||
|
"comment": {
|
||||||
|
"color": "#6c7086"
|
||||||
|
},
|
||||||
|
"comment_preproc": {
|
||||||
|
"color": "#89b4fa"
|
||||||
|
},
|
||||||
|
"keyword": {
|
||||||
|
"color": "#cba6f7"
|
||||||
|
},
|
||||||
|
"keyword_reserved": {
|
||||||
|
"color": "#cba6f7"
|
||||||
|
},
|
||||||
|
"keyword_namespace": {
|
||||||
|
"color": "#f9e2af"
|
||||||
|
},
|
||||||
|
"keyword_type": {
|
||||||
|
"color": "#f9e2af"
|
||||||
|
},
|
||||||
|
"operator": {
|
||||||
|
"color": "#89dceb"
|
||||||
|
},
|
||||||
|
"punctuation": {
|
||||||
|
"color": "#9399b2"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"color": "#b4befe"
|
||||||
|
},
|
||||||
|
"name_builtin": {
|
||||||
|
"color": "#fab387"
|
||||||
|
},
|
||||||
|
"name_tag": {
|
||||||
|
"color": "#cba6f7"
|
||||||
|
},
|
||||||
|
"name_attribute": {
|
||||||
|
"color": "#f9e2af"
|
||||||
|
},
|
||||||
|
"name_class": {
|
||||||
|
"color": "#f9e2af"
|
||||||
|
},
|
||||||
|
"name_constant": {
|
||||||
|
"color": "#f9e2af"
|
||||||
|
},
|
||||||
|
"name_decorator": {
|
||||||
|
"color": "#f5c2e7"
|
||||||
|
},
|
||||||
|
"name_exception": {},
|
||||||
|
"name_function": {
|
||||||
|
"color": "#89b4fa"
|
||||||
|
},
|
||||||
|
"name_other": {},
|
||||||
|
"literal": {},
|
||||||
|
"literal_number": {
|
||||||
|
"color": "#fab387"
|
||||||
|
},
|
||||||
|
"literal_date": {},
|
||||||
|
"literal_string": {
|
||||||
|
"color": "#a6e3a1"
|
||||||
|
},
|
||||||
|
"literal_string_escape": {
|
||||||
|
"color": "#f5c2e7"
|
||||||
|
},
|
||||||
|
"generic_deleted": {
|
||||||
|
"color": "#f38ba8"
|
||||||
|
},
|
||||||
|
"generic_emph": {
|
||||||
|
"color": "#cdd6f4",
|
||||||
|
"italic": true
|
||||||
|
},
|
||||||
|
"generic_inserted": {
|
||||||
|
"color": "#a6e3a1"
|
||||||
|
},
|
||||||
|
"generic_strong": {
|
||||||
|
"color": "#cdd6f4",
|
||||||
|
"bold": true
|
||||||
|
},
|
||||||
|
"generic_subheading": {
|
||||||
|
"color": "#89dceb"
|
||||||
|
},
|
||||||
|
"background": {
|
||||||
|
"background_color": "#181825"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"table": {
|
||||||
|
"center_separator": "┼",
|
||||||
|
"column_separator": "│",
|
||||||
|
"row_separator": "─"
|
||||||
|
},
|
||||||
|
"definition_list": {},
|
||||||
|
"definition_term": {},
|
||||||
|
"definition_description": {
|
||||||
|
"block_prefix": "\n🠶 "
|
||||||
|
},
|
||||||
|
"html_block": {},
|
||||||
|
"html_span": {}
|
||||||
|
}
|
|
@ -5,13 +5,17 @@
|
||||||
home.file = {
|
home.file = {
|
||||||
".face.icon".source =
|
".face.icon".source =
|
||||||
config.lib.file.mkOutOfStoreSymlink "/etc/nixos/assets/img/clownfish.png";
|
config.lib.file.mkOutOfStoreSymlink "/etc/nixos/assets/img/clownfish.png";
|
||||||
".config/fastfetch/config.jsonc".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/fastfetch.jsonc";
|
".config/fastfetch/config.jsonc".source =
|
||||||
".psqlrc".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/.psqlrc";
|
config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/fastfetch.jsonc";
|
||||||
|
".psqlrc".source =
|
||||||
|
config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/.psqlrc";
|
||||||
|
".config/glow/glow.yml".source =
|
||||||
|
config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/glow.config.yml";
|
||||||
|
".config/glow/theme.json".source =
|
||||||
|
config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/glow.theme.json";
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionPath = [
|
home.sessionPath = [ "/etc/nixos/scripts" ];
|
||||||
"/etc/nixos/scripts"
|
|
||||||
];
|
|
||||||
|
|
||||||
# link the configuration file in current directory to the specified location in home directory
|
# link the configuration file in current directory to the specified location in home directory
|
||||||
# home.file.".config/i3/wallpaper.jpg".source = ./wallpaper.jpg;
|
# home.file.".config/i3/wallpaper.jpg".source = ./wallpaper.jpg;
|
||||||
|
|
Loading…
Reference in a new issue