projekt0n / github-nvim-theme

GitHub's Neovim themes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

error when trying to use colortheme

ArtrenH opened this issue · comments

When I try to reload neovim with the following configuration in the init.vim file after running ":PlugInstall", I get an error message that says:
Error detected while processing /root/.vim/plugged/github-nvim-theme/colors/github_dark.vim: line 3: E5105: Error while calling lua chunk: ...im/plugged/github-nvim-theme/lua/github-theme/config.lua:11: attempt to index field 'g' (a nil value)
This is my init.vim file:

`set number relativenumber
syntax enable
set scrolloff=7
set backspace=indent,eol,start

call plug#begin('~/.vim/plugged')

Plug 'projekt0n/github-nvim-theme', { 'tag': 'v0.0.7' }

call plug#end()

colorscheme github_*`
Does anyone have an idea, what I might do wrong?

This error is caused by the line colorscheme github_* which was included for illustration purposes in the README. To apply the GitHub color scheme to Neovim, you need to specify a variant from the available options listed below:

" GitHub color scheme variants
colorscheme github_dark                     " Dark theme
colorscheme github_dark_default             " High contrast dark theme
colorscheme github_dark_colorblind          " Colorblind-friendly dark theme
colorscheme github_dimmed                   " Dimmed dark theme
colorscheme github_light                    " Light theme
colorscheme github_light_default            " High contrast light theme
colorscheme github_light_colorblind         " Colorblind-friendly light theme

`
set number relativenumber
syntax enable
set scrolloff=7
set backspace=indent,eol,start

call plug#begin('~/.vim/plugged')

Plug 'projekt0n/github-nvim-theme', { 'tag': 'v0.0.7' }

call plug#end()

colorscheme github_dark
`

But with this configuration I get the same error..

Which Neovim version are you using?

Oh thank you, I was for some reason running a super outdated version (0.4). I now installed the latest version and everything is fine.