diff --git a/init.el b/init.el index 939d5a9..d86cad3 100644 --- a/init.el +++ b/init.el @@ -50,11 +50,6 @@ (require 'use-package-ensure) (setq use-package-always-ensure t) -;; TODO: https://github.com/joaotavora/eglot/discussions/1436 -(use-package eglot - :defer t) -(require 'project) - ;; TODO: https://github.com/joaotavora/eglot/discussions/1487 (use-package eldoc :straight (:type built-in)) (use-package org :straight (:type built-in)) diff --git a/userland/theurgy-projects.el b/userland/projects.el similarity index 94% rename from userland/theurgy-projects.el rename to userland/projects.el index 0a34740..189b159 100644 --- a/userland/theurgy-projects.el +++ b/userland/projects.el @@ -1,4 +1,4 @@ -;;; theurgy-projects.el --- Project management configuration with whaler -*- lexical-binding: t -*- +;;; projects.el --- Project management configuration with whaler -*- lexical-binding: t -*- ;; This file is not part of GNU Emacs @@ -75,6 +75,6 @@ This returns nil if no project is found." (interactive) (customize-group 'whaler)) -(provide 'theurgy-projects) +(provide 'projects) -;;; theurgy-projects.el ends here +;;; projects.el ends here diff --git a/userland/system-util.el b/userland/system-util.el index e7eb22e..49403c7 100644 --- a/userland/system-util.el +++ b/userland/system-util.el @@ -56,7 +56,7 @@ ["Networking" ("d" "Dashboard" nm-ui-dashboard) ("S" "Status" nm-status) ("w" "WiFi Browser" nm-ui-wifi-list) - ("c" "Connections" nm-ui-connections-list)] + ("c" "Connections" nm-ui-connections)] ["Bluetooth" ("l" "List Devices" bluetooth-list-devices)]) (define-key global-map (kbd "C-c o s") #'system-interactions-transient)) diff --git a/window-utils.el b/window-utils.el index f6a34f7..973b49d 100644 --- a/window-utils.el +++ b/window-utils.el @@ -39,7 +39,7 @@ ;; left, top, right, bottom (setq window-sides-slots (if (equal system-type 'android) '(1 1 0 1) - '(5 1 5 2))) + '(5 1 5 1))) (add-to-list 'display-buffer-alist `("\\*Help\\*" diff --git a/workflows/config-custom.el b/workflows/config-custom.el index b657cbf..b8fc12b 100644 --- a/workflows/config-custom.el +++ b/workflows/config-custom.el @@ -26,7 +26,6 @@ (use-package yaml-mode :config (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)) - (add-to-list 'auto-mode-alist '("\\.yaml\\'" . yaml-mode)) (add-hook 'yaml-mode-hook '(lambda () (define-key yaml-mode-map "\C-m" 'newline-and-indent)))) diff --git a/workflows/lisp-custom.el b/workflows/lisp-custom.el index e554463..17e404d 100644 --- a/workflows/lisp-custom.el +++ b/workflows/lisp-custom.el @@ -45,13 +45,7 @@ (use-package geiser) (use-package geiser-chicken - :after (geiser) - :config (add-to-list 'display-buffer-alist - '("\\*Geiser" - (display-buffer-in-side-window) - (side . bottom) - (slot . 1) - (window-height . 0.2)))) + :after (geiser)) ;; SICP my beloved (use-package sicp diff --git a/workflows/org-custom.el b/workflows/org-custom.el index 1a65a6e..67d9c1d 100644 --- a/workflows/org-custom.el +++ b/workflows/org-custom.el @@ -647,8 +647,7 @@ :config (setq org-roam-ui-sync-theme t org-roam-ui-follow t - org-roam-ui-update-on-save t - org-roam-ui-open-on-start nil)) + org-roam-ui-update-on-save t)) ;; Bibliography stuff (setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex. @@ -688,15 +687,10 @@ :type git :host github :repo "hasu/emacs-ob-racket" :files ("*.el" "*.rkt"))) -;; Mermaid support, for graphing -(use-package mermaid-mode) -(use-package ob-mermaid) - (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t) (racket . t) - (mermaid . t) )) ;;; LaTeX configuration diff --git a/workflows/sql-custom.el b/workflows/sql-custom.el deleted file mode 100644 index 5297a5a..0000000 --- a/workflows/sql-custom.el +++ /dev/null @@ -1,30 +0,0 @@ -;;; sql-custom.el --- Custom SQL configuration -*- lexical-binding: t -*- - -;; This file is not part of GNU Emacs - -;; This program is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - - -;;; Commentary: - -;; commentary - -;;; Code: - -;; PL/SQL Support -(use-package plsql) - -(provide 'sql-custom) - -;;; sql-custom.el ends here