diff options
| author | Ryan Winchester <ryanwinchester@users.noreply.github.com> | 2024-03-05 21:19:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-05 20:19:06 -0500 |
| commit | 1ac7b86245ad5035a3dd7de6873688df6ddecc2f (patch) | |
| tree | 4d056a738af9e5cbc512f82dbd33cf7cb7924924 | |
| parent | 8137862bf81af8ad358338abfeb96c25c11ebd8f (diff) | |
| download | dots-1ac7b86245ad5035a3dd7de6873688df6ddecc2f.tar.gz | |
Add more detail to colorscheme comment (#713)
| -rw-r--r-- | nvim/init.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 16d3c26..e8c8693 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -725,7 +725,9 @@ require('lazy').setup { lazy = false, -- make sure we load this during startup if it is your main colorscheme priority = 1000, -- make sure to load this before all the other start plugins config = function() - -- Load the colorscheme here + -- Load the colorscheme here. + -- Like many other themes, this one has different styles, and you could load + -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. vim.cmd.colorscheme 'tokyonight-night' -- You can configure highlights by doing something like |