spacemacs

Drew Verlee 2023-07-31T17:34:59.283479Z

How would i trouble shoot why my dotspacemacs/user-config isn't being run when i start emacs? I have to run that function manually.

practicalli-johnny 2023-07-31T17:43:09.290449Z

If using a .spacemacs.d/init config, check to see if there is a .spacemacs file in the root of the user directory and remove it (it takes precedence)

practicalli-johnny 2023-07-31T17:43:58.421069Z

Otherwise I would assume some parens wrangling is required in the Spacemacs user config

practicalli-johnny 2023-07-31T17:44:39.055429Z

Or something very weird is happening: 👻

Drew Verlee 2023-07-31T17:49:16.708289Z

How do you check for parens issues? (Other than manually binary search)

practicalli-johnny 2023-07-31T17:56:41.663129Z

In evil Normal mode I use % with the cursor on the opening paren and it should jump to the closing paren (if it exists). Should show if things got nested.

practicalli-johnny 2023-07-31T17:57:44.984479Z

I assume there is something in Lisp state that does the same, something in the SPC k menu

practicalli-johnny 2023-07-31T17:59:23.397309Z

check-parens command apparently checks parents too https://www.emacswiki.org/emacs/DebuggingParentheses#:~:text=Unbalanced%20parentheses%20will%20cause%20errors,have%20reached%20the%20problematic%20spot.

👍 1
Drew Verlee 2023-07-31T18:48:49.504839Z

Thanks! no parens issues came up. Evaling everything in the user-config runs fine. No .spacemacs in the root of the user directory. 🤔

practicalli-johnny 2023-07-31T18:57:41.251959Z

SPC f e D to compare your Spacemacs user config with the Spacemacs template config ?

👀 1
practicalli-johnny 2023-07-31T19:00:20.802539Z

Or move your existing user config to a backup directory, restart Emacs and it will create a new .spacemacs config. Then add specific expressions to the dotspacemacs/user-config section, optionally using , e e to check the added expressions work

practicalli-johnny 2023-07-31T19:04:09.113529Z

Or backup your existing config and see if the Practicalli config loads (should show a Practicalli logo on the home buffer, SPC b h https://github.com/practicalli/spacemacs-config/

Drew Verlee 2023-08-01T02:23:02.660889Z

Thanks, I'm going to these ideas first thing tomorrow. I really appreciate your help John. It goes a long way to making the whole business more enjoyable knowing there are people who care.

1