Skip to content

Commit

Permalink
Merge pull request #6 from kawaki-san/config
Browse files Browse the repository at this point in the history
Omittable config fields
  • Loading branch information
rtkay123 committed Mar 22, 2022
2 parents bc5095c + 6f3f1fc commit 9d91465
Show file tree
Hide file tree
Showing 5 changed files with 483 additions and 256 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "utd"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Create and manage activities and notes offline in your terminal"
Expand Down
142 changes: 72 additions & 70 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,71 +1,73 @@
borders = "empty" # elegant, empty or extended
#borders = "empty" # elegant, empty or extended
disable-title = true

[sections.title]
underline = false
bold = false
italic = false
icon = ""
icon-suffix = false
colour = "#ebdbb2"

[tags]
colour = "#689d6a"
underline = false
bold = false
italic = false
icon = ""
icon-suffix = false

[sections.todo]
title-colour = "#458588"
indent-spaces = 4
title-bold = true
title-italic = false
title-underline = true
title-icon = ""
title-icon-suffix = false
entry-icon = ""
entry-icon-suffix = false
entry-bold = false
entry-italic = false
dim-completed = false
colour-low = "#458588"
colour-normal = "#d65d0e"
colour-high = "#cc241d"
colour-completed = "#98971a"
completed-icon = ""

[sections.in-progress]
title-colour = "#d79921"
indent-spaces = 8
title-bold = false
title-italic = false
title-underline = true
title-icon = ""
title-icon-suffix = false
entry-icon = ""
entry-icon-suffix = false
entry-bold = false
entry-italic = true
colour-low = "#458588"
colour-normal = "#d65d0e"
colour-high = "#cc241d"

[sections.notes]
title-colour = "#d79921"
indent-spaces = 4
title-bold = false
title-italic = false
title-underline = false
title-icon = ""
title-icon-suffix = false
entry-icon = ""
entry-icon-suffix = false
entry-bold = false
entry-italic = false
dim-noted = true
colour-low = "#ebdbb2"
colour-normal = "#ebdbb2"
colour-high = "#ebdbb2"
colour-completed = "#458588"
completed-icon = ""
#
#[sections.title]
#underline = false
#bold = false
#italic = false
#icon = " "
#icon-suffix = false
#colour = "#ebdbb2"
#
#[tags]
#colour = "#689d6a"
#underline = false
#bold = false
#italic = false
#icon = "⏽"
#icon-suffix = false
#
#[sections.todo]
#title-colour = "#458588"
#indent-spaces = 4
#title-bold = true
#title-italic = false
#title-underline = true
#title-icon = " "
#title-icon-suffix = false
#entry-icon = ""
#entry-icon-suffix = false
#entry-bold = false
#entry-italic = false
#dim-completed = false
#colour-low = "#458588"
#colour-normal = "#d65d0e"
#colour-high = "#cc241d"
#colour-completed = "#98971a"
#completed-icon = "✓ "
#
#[sections.in-progress]
#title-colour = "#d79921"
#indent-spaces = 8
#title-bold = false
#title-italic = false
#title-underline = true
#title-icon = "羽"
#title-icon-suffix = false
#entry-icon = " "
#entry-icon-suffix = false
#entry-bold = false
#entry-italic = true
#colour-low = "#458588"
#colour-normal = "#d65d0e"
#colour-high = "#cc241d"
#
#[sections.notes]
#title-colour = "#d79921"
#indent-spaces = 4
#title-bold = false
#title-italic = false
#title-underline = false
#title-icon = " "
#title-icon-suffix = false
#entry-icon = ""
#entry-icon-suffix = false
#entry-bold = false
#entry-italic = false
#dim-noted = true
#colour-low = "#ebdbb2"
#colour-normal = "#ebdbb2"
#colour-high = "#ebdbb2"
#colour-completed = "#458588"
#completed-icon = ""
Loading

0 comments on commit 9d91465

Please sign in to comment.