Jump to content

Neovim: Difference between revisions

m
Changed Lua plugin example to show multi-line lua syntax (not obvious if one is used to configuring neovim with lua only)
imported>Haemeah
m (fix broken link)
imported>Kopsis
m (Changed Lua plugin example to show multi-line lua syntax (not obvious if one is used to configuring neovim with lua only))
Line 154: Line 154:
       config = ''
       config = ''
         packadd! nvim-colorizer.lua
         packadd! nvim-colorizer.lua
         lua require 'colorizer'.setup()
         lua << END
require 'colorizer'.setup {
  '*'; -- Highlight all files, but customize some others.
  '!vim'; -- Exclude vim from highlighting.
}
END
       '';
       '';
     }
     }
Anonymous user