Compare commits
No commits in common. "a93fa78c4faa82f94c46d2e63d210a0347d31c28" and "db3638593a838b174fd841c6ce556421a254791d" have entirely different histories.
a93fa78c4f
...
db3638593a
8 changed files with 7 additions and 55 deletions
5
init.el
5
init.el
|
|
@ -50,11 +50,6 @@
|
||||||
(require 'use-package-ensure)
|
(require 'use-package-ensure)
|
||||||
(setq use-package-always-ensure t)
|
(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
|
;; TODO: https://github.com/joaotavora/eglot/discussions/1487
|
||||||
(use-package eldoc :straight (:type built-in))
|
(use-package eldoc :straight (:type built-in))
|
||||||
(use-package org :straight (:type built-in))
|
(use-package org :straight (:type built-in))
|
||||||
|
|
|
||||||
|
|
@ -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
|
;; This file is not part of GNU Emacs
|
||||||
|
|
||||||
|
|
@ -75,6 +75,6 @@ This returns nil if no project is found."
|
||||||
(interactive)
|
(interactive)
|
||||||
(customize-group 'whaler))
|
(customize-group 'whaler))
|
||||||
|
|
||||||
(provide 'theurgy-projects)
|
(provide 'projects)
|
||||||
|
|
||||||
;;; theurgy-projects.el ends here
|
;;; projects.el ends here
|
||||||
|
|
@ -56,7 +56,7 @@
|
||||||
["Networking" ("d" "Dashboard" nm-ui-dashboard)
|
["Networking" ("d" "Dashboard" nm-ui-dashboard)
|
||||||
("S" "Status" nm-status)
|
("S" "Status" nm-status)
|
||||||
("w" "WiFi Browser" nm-ui-wifi-list)
|
("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)])
|
["Bluetooth" ("l" "List Devices" bluetooth-list-devices)])
|
||||||
|
|
||||||
(define-key global-map (kbd "C-c o s") #'system-interactions-transient))
|
(define-key global-map (kbd "C-c o s") #'system-interactions-transient))
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
;; left, top, right, bottom
|
;; left, top, right, bottom
|
||||||
(setq window-sides-slots (if (equal system-type 'android)
|
(setq window-sides-slots (if (equal system-type 'android)
|
||||||
'(1 1 0 1)
|
'(1 1 0 1)
|
||||||
'(5 1 5 2)))
|
'(5 1 5 1)))
|
||||||
|
|
||||||
(add-to-list 'display-buffer-alist
|
(add-to-list 'display-buffer-alist
|
||||||
`("\\*Help\\*"
|
`("\\*Help\\*"
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,6 @@
|
||||||
(use-package yaml-mode
|
(use-package yaml-mode
|
||||||
:config
|
:config
|
||||||
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
|
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
|
||||||
(add-to-list 'auto-mode-alist '("\\.yaml\\'" . yaml-mode))
|
|
||||||
(add-hook 'yaml-mode-hook
|
(add-hook 'yaml-mode-hook
|
||||||
'(lambda ()
|
'(lambda ()
|
||||||
(define-key yaml-mode-map "\C-m" 'newline-and-indent))))
|
(define-key yaml-mode-map "\C-m" 'newline-and-indent))))
|
||||||
|
|
|
||||||
|
|
@ -45,13 +45,7 @@
|
||||||
(use-package geiser)
|
(use-package geiser)
|
||||||
|
|
||||||
(use-package geiser-chicken
|
(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
|
;; SICP my beloved
|
||||||
(use-package sicp
|
(use-package sicp
|
||||||
|
|
|
||||||
|
|
@ -647,8 +647,7 @@
|
||||||
:config
|
:config
|
||||||
(setq org-roam-ui-sync-theme t
|
(setq org-roam-ui-sync-theme t
|
||||||
org-roam-ui-follow 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
|
;; Bibliography stuff
|
||||||
(setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex.
|
(setq bibtex-dialect 'biblatex) ;; Use biblatex instead of bibtex.
|
||||||
|
|
@ -688,15 +687,10 @@
|
||||||
:type git :host github :repo "hasu/emacs-ob-racket"
|
:type git :host github :repo "hasu/emacs-ob-racket"
|
||||||
:files ("*.el" "*.rkt")))
|
:files ("*.el" "*.rkt")))
|
||||||
|
|
||||||
;; Mermaid support, for graphing
|
|
||||||
(use-package mermaid-mode)
|
|
||||||
(use-package ob-mermaid)
|
|
||||||
|
|
||||||
(org-babel-do-load-languages
|
(org-babel-do-load-languages
|
||||||
'org-babel-load-languages
|
'org-babel-load-languages
|
||||||
'((emacs-lisp . t)
|
'((emacs-lisp . t)
|
||||||
(racket . t)
|
(racket . t)
|
||||||
(mermaid . t)
|
|
||||||
))
|
))
|
||||||
|
|
||||||
;;; LaTeX configuration
|
;;; LaTeX configuration
|
||||||
|
|
|
||||||
|
|
@ -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 <https://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
|
|
||||||
;;; Commentary:
|
|
||||||
|
|
||||||
;; commentary
|
|
||||||
|
|
||||||
;;; Code:
|
|
||||||
|
|
||||||
;; PL/SQL Support
|
|
||||||
(use-package plsql)
|
|
||||||
|
|
||||||
(provide 'sql-custom)
|
|
||||||
|
|
||||||
;;; sql-custom.el ends here
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue