1
0

update init.el

This commit is contained in:
2026-03-01 20:44:47 -05:00
parent e04f526ad2
commit d40402e1d6

View File

@@ -14,6 +14,20 @@
(column-number-mode 1)
(whitespace-mode 1)
(keymap-global-set "C-." 'other-window)
(keymap-global-set "C-c c" 'compile)
(keymap-global-set "C-c C-c" 'recompile)
(split-window-right)
(require 'compile)
(add-to-list
'compilation-error-regexp-alist-alist
'(paren-style
"^\\([^(\n]+\\)(\\([0-9]+\\),\\([0-9]+\\)):"
1 2 3))
(add-to-list 'compilation-error-regexp-alist 'paren-style)
(defvar xdg-cache-dir
(or (getenv "XDG_CACHE_HOME")
(expand-file-name "~/.cache")))