Update highlights, terminal and configs

This commit is contained in:
2021-04-22 21:40:59 -03:00
parent 8c712885e6
commit cbc1447de4
5 changed files with 117 additions and 47 deletions

View File

@@ -2,7 +2,7 @@
### About
A minimal and clean dark theme written in lua for neovim.
A clean dark theme written in lua for neovim.
### Features
- Support for numerous plugins
@@ -26,9 +26,9 @@ Plug 'tiagovla/tokyodark.nvim'
**Note:** The configuration options should be placed before `colorscheme tokyodark` .
- `tokyonight_transparent_background`: Set to enable transparent background.
- `tokyonight_enable_italic_comment`: Set to enable italic in `Comment` .
- `tokyonight_enable_italic`: Set to italicize keywords. This option is
- `tokyodark_transparent_background`: Set to enable transparent background.
- `tokyodark_enable_italic_comment`: Set to enable italic in `Comment` .
- `tokyodark_enable_italic`: Set to italicize keywords. This option is
designed to use with fonts that support italic styles, for example
[Fira Code, MonoLisa, Dank Mono](https://www.nerdfonts.com/).
- `tokyodark_color_gamma`: Change to adjust the brightness of the theme. (Darker < 1.0 < Lighter).
@@ -40,7 +40,7 @@ Plug 'tiagovla/tokyodark.nvim'
vim.g.tokyodark_transparent_background = false
vim.g.tokyodark_enable_italic_comment = true
vim.g.tokyodark_enable_italic = true
vim.g.tokyodark_color_gamma = 1.0
vim.g.tokyodark_color_gamma = "1.0"
vim.cmd("colorscheme tokyodark")
```
@@ -49,11 +49,10 @@ vim.cmd("colorscheme tokyodark")
let g:tokyodark_transparent_background = 0
let g:tokyodark_enable_italic_comment = 1
let g:tokyodark_enable_italic = 1
let g:tokyodark_color_gamma = 1.0
let g:tokyodark_color_gamma = "1.0"
colorscheme tokyodark
```
#### Inspiration
### Inspiration
* [tokyonight-vim](https://github.com/ghifarit53/tokyonight-vim)
* [tokyo-night-vscode-theme](https://github.com/enkia/tokyo-night-vscode-theme)