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
There are 2 problems in nano-emacs code base that breaks my borg-based setup:
nano-defaults.el has top-level instructions with side effect: e.g., (setq-default shell-file-name "/bin/zsh"). This means that loading the file changes Emacs. I suggest wrapping these changes in a nano-defaults function.
nano-defaults.el mixes general-purpose improvements and user-specific configuration (e.g., your email address, name and favorite shell). I suggest moving your configuration to a dedicated file outside of this repository.
My actual problem is that batch compiling my Emacs packages loads nano-defaults.el which changes the default shell to /bin/zsh (which I don't have) and this breaks compiling a subsequent Emacs package.
The text was updated successfully, but these errors were encountered:
Thanks for the report. I'm now trying to clean things up by splitting packages into individual repositories (nano-theme, modeline and splash so far) and I need to separate the actual layout from other settings.
There are 2 problems in nano-emacs code base that breaks my borg-based setup:
nano-defaults.el
has top-level instructions with side effect: e.g.,(setq-default shell-file-name "/bin/zsh")
. This means that loading the file changes Emacs. I suggest wrapping these changes in anano-defaults
function.nano-defaults.el
mixes general-purpose improvements and user-specific configuration (e.g., your email address, name and favorite shell). I suggest moving your configuration to a dedicated file outside of this repository.My actual problem is that batch compiling my Emacs packages loads
nano-defaults.el
which changes the default shell to/bin/zsh
(which I don't have) and this breaks compiling a subsequent Emacs package.The text was updated successfully, but these errors were encountered: