diff --git a/BACKLOG.md b/BACKLOG.md index b2e4fb5..54a1f9d 100644 --- a/BACKLOG.md +++ b/BACKLOG.md @@ -12,6 +12,7 @@ - [ ] yt video ## Dones +- [x] document and suggest colors for Calendar nav buttons, they look weird in gruvbox - [x] initial support for special links - links to headings - links to paragraphs diff --git a/README.md b/README.md index 281df32..07f8ba3 100644 --- a/README.md +++ b/README.md @@ -41,11 +41,11 @@ not only for writing code. This is the result of my first days of hacking neovim with lua (more features have been added since, see [Use it](#2-use-it) below the screenshots): -![./img/2021-11-23_04-27.png](img/2021-11-23_04-27.png) +![](img/2021-12-03_13-17.png) --- -![./img/2021-11-23_04-29.png](img/2021-11-23_04-29.png) +![](img/2021-12-03_13-21.png) ## Search-based navigation @@ -281,6 +281,8 @@ Telekasten.nvim allows you to color your `[[links]]` by providing two syntax gro The last one, `tkHighlight`, has nothing to do with links but I added it anyway, since I like highlighting text when taking notes 😄. +I also like the navigation buttons of the calendar to appear less prevalent, so I also redefine the `CalNavi` class. + You can assign colors to the new syntax groups in your `init.vim`: ```vim @@ -295,6 +297,9 @@ hi tkBrackets ctermfg=gray " highlight ==highlighted== text hi tkHighlight ctermbg=yellow ctermfg=darkred cterm=bold + +" for calendar, I prefer less prevalent navigation buttons +hi link CalNavi CalRuler ``` ## 1. Get Help @@ -555,6 +560,9 @@ hi tkBrackets ctermfg=gray " highlight ==highlighted== text hi tkHighlight ctermbg=yellow ctermfg=darkred cterm=bold + +" for calendar, I prefer less prevalent navigation buttons +hi link CalNavi CalRuler ``` ## 4. The hardcoded stuff diff --git a/doc/telekasten.txt b/doc/telekasten.txt index 7884d7f..086f8bf 100644 --- a/doc/telekasten.txt +++ b/doc/telekasten.txt @@ -661,6 +661,9 @@ However, here are some suggestions: " highlight ==highlighted== text hi tkHighlight ctermbg=yellow ctermfg=darkred cterm=bold + + " for calendar, I prefer less prevalent navigation buttons + hi link CalNavi CalRuler < ================================================================================ diff --git a/img/2021-12-03_13-17.png b/img/2021-12-03_13-17.png new file mode 100644 index 0000000..b751ffe Binary files /dev/null and b/img/2021-12-03_13-17.png differ diff --git a/img/2021-12-03_13-21.png b/img/2021-12-03_13-21.png new file mode 100644 index 0000000..e0729dd Binary files /dev/null and b/img/2021-12-03_13-21.png differ