I need help with vim.opt.path
please
#2065
-
In my init.lua config I had this: vim.opt.path = vim.opt.path + "**" Can you please help me: how do I do this with nixvim? opts.path = path + "**"; Thanks In advance. |
Beta Was this translation helpful? Give feedback.
Answered by
MattSturgeon
Aug 23, 2024
Replies: 1 comment 3 replies
-
I think this should be possible by passing "raw lua". Can you try: opt.path.__raw = ''vim.opt.path + "**"''; ? |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
refaelsh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think this should be possible by passing "raw lua".
Can you try:
?