Skip to content

rohanorton/vim-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neovim Config

Configuration files for Neovim.

Troubleshooting

Hererocks install issue

If hererocks is unable to install the required LuaJit version, it could be because the hererocks script does not have rules for the desired version.

A hack to fix the issue is to add a translation to the hererocks file (~/.cache/nvim/packer_hererocks/hererocks.py) to act as an alias, as follows:

class LuaJIT(Lua):
    # ...
    translations = {
        "2": "2.0.5",
        "2.0": "2.0.5",
        "2.1": "2.1.0-beta3",
        "2.1.1703358377": "2.1.0-beta3", # <--- ADDED
        "^": "2.0.5",
        "latest": "2.0.5"
    }
    # ...

Then run command:

python hererocks.py --verbose -j 2.1.1703358377 -r latest 2.1.1703358377

About

Vim Config

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages