Compare commits

...

6 commits

Author SHA1 Message Date
Jakub
a93fa78c4f Add PL/SQL support 2025-10-28 09:13:58 +08:00
Jakub
d33bf6d36e Don't open org-roam-ui on start for real, and mermaid support 2025-10-28 09:13:34 +08:00
Jakub
864c494037 Support yaml in .yaml files 2025-10-28 09:13:25 +08:00
Jakub
40790fde5a Set geiser next to the bottom terminal 2025-10-28 09:13:06 +08:00
Jakub
ed7f0479fa Fix function names for nm 2025-10-28 09:12:55 +08:00
Jakub
66c5ef25cf Fix an issue with eglot and projects.el loading 2025-10-28 09:12:38 +08:00
8 changed files with 55 additions and 7 deletions

View file

@ -50,6 +50,11 @@
(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))

View file

@ -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)]
("c" "Connections" nm-ui-connections-list)]
["Bluetooth" ("l" "List Devices" bluetooth-list-devices)])
(define-key global-map (kbd "C-c o s") #'system-interactions-transient))

View file

@ -1,4 +1,4 @@
;;; projects.el --- Project management configuration with whaler -*- lexical-binding: t -*-
;;; theurgy-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 'projects)
(provide 'theurgy-projects)
;;; projects.el ends here
;;; theurgy-projects.el ends here

View file

@ -39,7 +39,7 @@
;; left, top, right, bottom
(setq window-sides-slots (if (equal system-type 'android)
'(1 1 0 1)
'(5 1 5 1)))
'(5 1 5 2)))
(add-to-list 'display-buffer-alist
`("\\*Help\\*"

View file

@ -26,6 +26,7 @@
(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))))

View file

@ -45,7 +45,13 @@
(use-package geiser)
(use-package geiser-chicken
:after (geiser))
:after (geiser)
:config (add-to-list 'display-buffer-alist
'("\\*Geiser"
(display-buffer-in-side-window)
(side . bottom)
(slot . 1)
(window-height . 0.2))))
;; SICP my beloved
(use-package sicp

View file

@ -647,7 +647,8 @@
:config
(setq org-roam-ui-sync-theme t
org-roam-ui-follow t
org-roam-ui-update-on-save t))
org-roam-ui-update-on-save t
org-roam-ui-open-on-start nil))
;; Bibliography stuff
(setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex.
@ -687,10 +688,15 @@
: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

30
workflows/sql-custom.el Normal file
View file

@ -0,0 +1,30 @@
;;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;; commentary
;;; Code:
;; PL/SQL Support
(use-package plsql)
(provide 'sql-custom)
;;; sql-custom.el ends here