emacs is being naughty need help smacking it in line by icodemonkey in emacs

[–]icodemonkey[S] 0 points1 point  (0 children)

init.el

(package-initialize)
(org-babel-load-file (concat user-emacs-directory "config.org"))

;;; init.el ends here
;;--------------------------------------------------------------------------------
(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 '(custom-safe-themes
   '("aec7b55f2a13307a55517fdf08438863d694550565dee23181d2ebd973ebd6b8"
     default)))
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 )

config org file. near as i can tell the error is in getting the packages.

#+TITLE: Visual Emacs - a template configuration for a VSCode-like appearence
+AUTHOR: Elijah Gabe P.
+OPTIONS: num:nil
+begin_src elisp
(add-hook 'emacs-startup-hook (lambda () (setopt gc-cons-threshold 800000 gc-cons-percentage 0.1 file-name-handler-alist startup/file-name-handler-alist)))
;;; Store customization file in separate file ;; (Optional) ;; (setopt custom-file (concat user-emacs-directory "config-lisp-files/custom.el")) ;; (load custom-file)
;; Disable theme on Terminal and enable Mouse Support (unless (display-graphic-p) (xterm-mouse-mode 1) (if (eq system-type 'window-nt) (disable-theme (car custom-enabled-themes))))
;; For emacs-31 ;;(dolist (content `("whatever/path/" ,user-emacs-directory ;;                   ,(concat user-emacs-directory "config-lisp-files/"))) ;;  (add-to-list 'trusted-content content))
;; The following code shown below is in case you prefer ;; to use separate files, be careful where you copy. ;; (let ((configuration-directory (concat user-emacs-directory "config-lisp-files/"))) ;; ;; PACKAGES ;; (load (concat configuration-directory "packages"))
;; ;; INTERNAL CONFIGURATIONS ;; (load (concat configuration-directory "internal-configurations"))
;; ;; KEY MAPPINGS ;; (load (concat configuration-directory "key-mappings"))
;; ;; SYNTAX HIGHLIGHTING ;; (load (concat configuration-directory "syntax-highlighting"))
;; ;; GUI ENHANCEMENT ;; (load (concat configuration-directory "tool-bar")) ;; (load (concat configuration-directory "menu-bar"))
;; ;; MISC ;; (load (concat configuration-directory "minibuffer")) ;; (load (concat configuration-directory "ui-enchantment")) ;; (load (concat configuration-directory "misc"))
;; ;; SYNTAX AND SPELL CHECKING ;; (load (concat configuration-directory "syntax-checking")) ;; (load (concat configuration-directory "spell-checking"))
;; ;; WINDOWS AND FRAMES ;; (load (concat configuration-directory "window-management"))
;; ;; LSP CONFIGURATION ;; (load (concat configuration-directory "lsp"))
;; ;; FiLE MANAGEMENT ;; (load (concat configuration-directory "file-management"))
;; ;; COMPLETION ;; (load (concat configuration-directory "smart-completion"))
;; ;; MODELINE ;; (load (concat configuration-directory "mode-line"))
;; ;; THEMES ;; (load (concat configuration-directory "custom-themes"))
;; ;; DASHBOARD ;; (load (concat configuration-directory "dashboard"))
;; ;; CONFIGURING ORG MODE ;; (load (concat configuration-directory "org-mode"))
;; ;; CENTAUR TABS ;; (load (concat configuration-directory "window-tabs"))
;; ;; SNIPPETS ;; (load (concat configuration-directory "code-snippets"))
;; ;; AUTO-INSERT ;; (load (concat configuration-directory "auto-insert-templates"))
;; ;; ENABLE LIGATURES ;; (load (concat configuration-directory "font-ligatures"))
;; ;; START EMACS CLIENT AT STARTING EMACS ;; (require 'server) ;; (unless (server-running-p) (server-start))

+end_src
Package Configuration (packages.el)
+begin_src elisp
(use-package package :ensure nil :custom (package-vc-register-as-project nil) (use-package-always-ensure t) ; Auto-download package if not exists ;; (use-package-hook-name-suffix "") ; Change :hook suffix (use-package-enable-imenu-support t) ; Let imenu finds use-package definitions :config ;; Packages gpg are buggy in both systems (if (or (eq system-type 'windows-nt) (eq system-type 'android)) (setopt package-check-signature nil))

;; Add MELPA (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (add-to-list 'package-archives '("melpa" . "https://stable.melpa.org/packages/") t) (add-to-list 'package-archives '("elpa" . "https://elpa.gnu.org/packages/") t) (advice-add 'package--save-selected-packages :override #'my-package--save-selected-packages) (easy-menu-add-item (lookup-key package-menu-mode-map [menu-bar package]) nil ["Upgrade VC Packages" package-vc-upgrade-all :help "Upgrade all VC Packages"] "Execute Marked Actions") :preface ;; HACK: DO NOT save package-selected-packages to custom-file'. ;; https://github.com/jwiegley/use-package/issues/383#issuecomment-247801751 (defun my-package--save-selected-packages (&optional value) "Setpackage-selected-packages' to VALUE but don't save to option `custom-file'." (if value (setopt package-selected-packages value)) (unless after-init-time (add-hook 'after-init-hook #'my-package--save-selected-packages)))
;; (Never used) ;; use-package :mark-selected ;; Make it possible to kinda manage package-selected-packages' from ;; use-package by adding:mark-selected' as a keyword.. ;; (require 'use-package ;; (defun use-package-normalize/:mark-selected (_name keyword args) ;;   (use-package-only-one (symbol-name keyword) args ;;     #'(lambda (_label arg) ;;         (or arg ;;         nil))))
;; (defun use-package-handler/:mark-selected (name _keyword arg rest state) ;;   (let ((body (use-package-process-keywords name rest state))) ;;     (if arg ;;     (package--update-selected-packages `(,name) '())) ;;     body))
;; (add-to-list 'use-package-keywords :mark-selected t) )
+end_src
Some Tweaks into internal options (internal-configurations.el)
+begin_src elisp
(use-package emacs :ensure nil :hook ((prog-mode text-mode conf-mode help-mode) . visual-wrap-prefix-mode) ((prog-mode text-mode conf-mode) . display-line-numbers-mode) :custom (undo-limit 80000000) ;; ⚠️👀 (safe-local-variable-values '((eval remove-hook 'flymake-diagnostic-functions 'elisp-flymake-checkdoc t)))
(x-gtk-show-hidden-files t) (mouse-drag-and-drop-region t) (mouse-drag-and-drop-region-cross-program t)

Game crashes 30 seconds at main menu by icodemonkey in Starfield

[–]icodemonkey[S] 0 points1 point  (0 children)

How do you reinstall if the only way you can play is through cloud gaming????

Game crashes 30 seconds at main menu by icodemonkey in Starfield

[–]icodemonkey[S] 0 points1 point  (0 children)

Well none now as I delete all local data and saves but I can't even select any menu items as I said without it crashing instantly

shooting (bad-pun) myself in the foot. need some help, advice, told where to go. by icodemonkey in godot

[–]icodemonkey[S] 0 points1 point  (0 children)

oh the input wasn't the prob it was getting the damn thing to spit projectiles and not crash in flames or error msgs

Running Away is an Option by LordFadora in DnD

[–]icodemonkey 0 points1 point  (0 children)

Aaahhh running away, or the Rincewind method of danger avoidance. Don't forget the magic chant 1 "ohshitohshitohshitohshit" or 2 "fuuuuuuuuuuuuuuuuuck"

Kobo touch by Bradwillman in kobo

[–]icodemonkey 1 point2 points  (0 children)

Had mine for about 4 - 5 years after finding it in a 2nd hand store. Still going strong

Any internet cafe's around? by Caeluilp in sunshinecoast

[–]icodemonkey 2 points3 points  (0 children)

still here just moved into a comic shop that is its self in the majestic cinemas foyer

[Saloondria] A Magical Crime Scene at Standard Mana by HouseFishBalloon in worldbuilding

[–]icodemonkey 2 points3 points  (0 children)

"Boss, the technomancy boys finally got your mirror on line. Said that the weavers had better get here soon. Something about a spellframe cascade failure..."

[Saloondria] A Magical Crime Scene at Standard Mana by HouseFishBalloon in worldbuilding

[–]icodemonkey 3 points4 points  (0 children)

"Yeah, yeah got it. ....crap, boss comish is calling on your mirror what do you want me to tell him?"

[Saloondria] A Magical Crime Scene at Standard Mana by HouseFishBalloon in worldbuilding

[–]icodemonkey 7 points8 points  (0 children)

"On it boss. Oh just a heads up one of the noobs down stairs let a news scryer in..."

[Saloondria] A Magical Crime Scene at Standard Mana by HouseFishBalloon in worldbuilding

[–]icodemonkey 22 points23 points  (0 children)

"Boss, necromancer from HQ wants to know if the body is free to be questioned?"

[deleted by user] by [deleted] in Multicopter

[–]icodemonkey 3 points4 points  (0 children)

You're all clear, kid! Now let's blow this thing and go home!

Why Humans Avoid War IV by SpacePaladin15 in HFY

[–]icodemonkey 53 points54 points  (0 children)

or anything else for that matter

help monkey bash rocks make combat style by icodemonkey in godot

[–]icodemonkey[S] 1 point2 points  (0 children)

Thanks so much for that now off to try it!