Customize your own projectile project in Emacs
When using projectile
to manage a project folder, we can customize the project’s properties to
help us more easily to build / test / run the project.
Assuming we have a folder which contains all files in the project, and we want to quickly build /
test the project, we can add a .projectile
file at the root of the project folder tree, then add
another .dir-locals.el
file describing the customized command.
1 | ((nil . ((projectile-project-name . "Project name described in the status bar") |