简体   繁体   中英

how to use vimscript plugins with lua for neovim

I have some plugins that it's config use vim-script how can I config plugins that use vim-script with lua for neovim.

for example gruvbox use vim-script I look in docs for lua config but I didn't find any thing, I have to use vim-script to configure it.

While writing your nvim stuff in lua, the vim object is automatically injected into your code by Neovim. It allows getting and setting vim, plugins and variable related options in lua.

The gruvbox theme requires setting variables in the global scope. You can access the global scope using the vim.g field.

For example to set g:gruvbox_bold to 1, which is true in lua, you need to write

vim.g.gruvbox_bold = true

in your init.lua file.

I recommend you to take a look at this article. https://www.notonlycode.org/neovim-lua-config/ . It is short and teaches the basics of using lua in Neovim.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM