ishan9299 / nvim-solarized-lua

solarized colorscheme in lua for nvim 0.5
MIT License
183 stars 54 forks source link

missing colors/*.vim files in master #22

Closed markwellis closed 3 years ago

markwellis commented 3 years ago

in commit 0a076f8 the .vim files in colors/ were removed.

When I tried to use master I got the error E185: Cannot find color scheme 'solarized'

If I use commit aae6d8d1 then it works as expected

Was this intentional? Am I doing something wrong?

my init.lua

require('packer').startup(function()
    use 'wbthomason/packer.nvim' -- Packer can manage itself
    use "ishan9299/nvim-solarized-lua"
end)

vim.opt.termguicolors = true
vim.opt.background = "dark"
vim.cmd("colorscheme solarized")
ishan9299 commented 3 years ago

what neovim version are you using?

ishan9299 commented 3 years ago

the neovim 0.5 can load *.lua files from colors/ and other runtime folders

markwellis commented 3 years ago

🤦‍♂️ my bad, I was using an old neovim 0.5 nightly!

Sorry, and thanks very much :)