-
-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Readme config exemple is wrong! #134
Comments
I can't see the difference in both configs. |
Missing the ' in hint attribute in github_colors object when you run de config get a error message. |
ful1e5
added a commit
to ful1e5/github-nvim-theme
that referenced
this issue
Nov 17, 2021
Thanks, @gabrielDpadua21 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This exemplo in readme is not workin because forget the ' in object
Error
" Example config in VimScript " NOTE: Configuration needs to be set BEFORE loading the color scheme with
colorscheme` commandlet g:github_function_style = "italic"
let g:github_sidebars = ["qf", "vista_kind", "terminal", "packer"]
" Change the "hint" color to the "orange" color, and make the "error" color bright red
let g:github_colors = {
\ 'hint: 'orange',
\ 'error': '#ff0000'
\ }
" Load the colorscheme
colorscheme github_dark
`
Work
" Example config in VimScript " NOTE: Configuration needs to be set BEFORE loading the color scheme with
colorscheme` commandlet g:github_function_style = "italic"
let g:github_sidebars = ["qf", "vista_kind", "terminal", "packer"]
" Change the "hint" color to the "orange" color, and make the "error" color bright red
let g:github_colors = { 'hint': 'orange', 'error': '#ff0000'}
" Load the colorscheme
colorscheme github_dark
`
The text was updated successfully, but these errors were encountered: