-
How would I include extra files in the build output? I want to include a pyproject.toml for fallback as a default set of settings for the ruff lsp. I want that file to exist in a subdirectory of my vim config directory - so I need to somehow include it in the build output so it can be sourced if theres no pyproject.toml in the python directory. Any guidance? Also nixCats is really cool, thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Just put it somewhere in your nvim directory (the one pointed to by luaPath) The whole thing gets You may then refer to it in several ways but |
Beta Was this translation helpful? Give feedback.
Just put it somewhere in your nvim directory (the one pointed to by luaPath)
The whole thing gets
cp -r *
into the store.You may then refer to it in several ways but
require('nixCats').configDir
is a good one