FPM is a fast project manager that allow you to set up your whole working environment with a single command.
First, you need to create a project shortcut. To do that, you can use the fpm new command.
fpm new project1This will create a new project and set it as the current project.
You can now configure it with the config command. It can take several arguments :
--path: Set the path to the project.
--editor: Set the editor to use for this project. If not set, VSCode will be used--terminal: Set the terminal to use for this project. If not set, the basic terminal will be used
fpm config --path /path/to/project --editor nvim --terminal kittyYou can now simply use fpm to open your whole working environment with a single command.
fpm openIf you want to select another project, you can simply type
fpm project2