nvim-projectconfig
nvim-projectconfig copied to clipboard
neovim projectconfig
When creating a new project, I use `lua require("nvim-projectconfig").edit_project_config()` for start writing a new project configuration. However this opens a lua file. Would it possible to have a variable according...
In nvim-projectconfig.lua, you hardcode the config path. It should instead use the neovim stdpath function **It is:** ``` local config = { silent = true, autocmd = true, project_dir =...
Thanks for this too. I'm thinking about following this pattern when I configure it. https://github.com/gtrias/dotfiles/blob/3149ab29f0144e18a2d52ebeb6ef838bef37b680/nvim/lua/plugins/projectconfig.lua#L7 If I do that, can I: - leave out `setup.project_dir` altogether? - use any directory...