You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we installed counsel-projectile, it prompts you for what you want to do whenever you switch to a project. This is kinduva pain when all you want to do is switch to the project. You probably want to pick an action and just stick with it.
What I'd love to see is:
A default action of something like project root directory or go to magit, and then a configuration option for frontmacs to satisfy the default action.
(custom-set-variables
;; Change this in order to choose your theme. This will auto install your theme
;; as package with the suffix "-theme" appended to the end. So for example,
;; if your theme is set to 'twilight, then it will try and download and require
;; the 'twilight-theme ELPA package.
;;
;; If you want to have your own completely custom theme that isn't available as
;; as an ELPA package, then set this variable to `nil', and roll your own theme
;; in an initializer
'(frontmacs-theme 'zenburn)
;; choose what to do when you first switch to a project.
;; valid options are :magit, :root-dir, :goto-dir,
'(frontmacs-default-project-switch-action :magit)
)
The text was updated successfully, but these errors were encountered:
Since we installed
counsel-projectile
, it prompts you for what you want to do whenever you switch to a project. This is kinduva pain when all you want to do is switch to the project. You probably want to pick an action and just stick with it.What I'd love to see is:
A default action of something like project root directory or go to magit, and then a configuration option for frontmacs to satisfy the default action.
The text was updated successfully, but these errors were encountered: