-
Notifications
You must be signed in to change notification settings - Fork 239
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
How can I change cursor color in Neovim Lua? #194
Comments
You can do it in VimL. I'm not sure how to do it via Lua in NeoVim. Example: let g:PaperColor_Theme_Options = {
\ 'theme': {
\ 'default.dark': {
\ 'override' : {
\ 'cursor_fg' : ['#1c1c1c', '234'],
\ 'cursor_bg' : ['#c6c6c6', '251'],
\ }
\ }
\ }
\ } |
For anyone stumbling across this issue while looking for lua to dict syntax (as I did), I think it would look something like this:
Key differences:
|
Thanks it worked. Except that I had to correct the second line to |
👋 I'm using Neovim and love this theme. However, the cursor is too light. How can I change its color via Lua?
The text was updated successfully, but these errors were encountered: