Merge branch 'main' of github.com:folke/tokyonight.nvim
This commit is contained in:
commit
2981e4bd09
@ -145,6 +145,12 @@ let g:tokyonight_style = "night"
|
||||
let g:tokyonight_italic_functions = 1
|
||||
let g:tokyonight_sidebars = [ "qf", "vista_kind", "terminal", "packer" ]
|
||||
|
||||
" Change the "hint" color to the "orange" color, and make the "error" color bright red
|
||||
let g:tokyonight_colors = {
|
||||
\ 'hint': 'orange',
|
||||
\ 'error': '#ff0000'
|
||||
\ }
|
||||
|
||||
" Load the colorscheme
|
||||
colorscheme tokyonight
|
||||
```
|
||||
|
@ -307,6 +307,7 @@ function M.setup(config)
|
||||
|
||||
-- NvimTree
|
||||
NvimTreeNormal = { fg = c.fg_sidebar, bg = c.bg_sidebar },
|
||||
NvimTreeNormalNC = { fg = c.fg_sidebar, bg = c.bg_sidebar },
|
||||
NvimTreeRootFolder = { fg = c.blue, style = "bold" },
|
||||
NvimTreeGitDirty = { fg = c.git.change },
|
||||
NvimTreeGitNew = { fg = c.git.add },
|
||||
|
Loading…
Reference in New Issue
Block a user