Articles tagged 'lua'

  • Installing MacVim with Lua enabled through Homebrew

    January 11, 2016

    If you’re like me, you like to have control over the plugins that you have installed in your editor setup. However, staying up to date with the different plugins can be a little bit of a hassle from time to time, so lately, I’ve been using YADR, a set of community maintained dotfiles.

    A great autocompletion plugin that YADR comes with is neocomplete.vim, which “provides a keyword completion system by maintaining a cache of keywords in the current buffer”. Unfortunately, for it to work, it needs MacVim with Lua enabled.

    Now, I already had MacVim installed through Caskroom:

    which mvim
    # /usr/local/bin/mvim
    ls -l $(which mvim)
    # /usr/local/bin/mvim -> /opt/homebrew-cask/Caskroom/macvim/7.4-84/mvim
    

    But this version was installed without Lua…

    Continue Reading →