mirror of
https://github.com/larstvei/dot-emacs.git
synced 2025-06-07 07:50:12 +00:00
Compare commits
No commits in common. "72fbff0076f8ef417993510f0047dcc5a3fe1c18" and "56f6827eb3077a60c839b3033b4db626341bb58a" have entirely different histories.
72fbff0076
...
56f6827eb3
19
init.org
19
init.org
@ -165,7 +165,7 @@
|
|||||||
(let ((private-file (concat user-emacs-directory "private.el")))
|
(let ((private-file (concat user-emacs-directory "private.el")))
|
||||||
(when (file-exists-p private-file)
|
(when (file-exists-p private-file)
|
||||||
(load-file private-file))
|
(load-file private-file))
|
||||||
(when (file-exists-p custom-file)
|
(when custom-file
|
||||||
(load-file custom-file))
|
(load-file custom-file))
|
||||||
(server-start))))
|
(server-start))))
|
||||||
|
|
||||||
@ -194,7 +194,6 @@
|
|||||||
|
|
||||||
(require 'use-package)
|
(require 'use-package)
|
||||||
(setq use-package-always-ensure t)
|
(setq use-package-always-ensure t)
|
||||||
(setq use-package-compute-statistics t)
|
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
@ -607,7 +606,6 @@
|
|||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
(use-package reveal-in-osx-finder
|
(use-package reveal-in-osx-finder
|
||||||
:defer t
|
|
||||||
:if (memq window-system '(mac ns)))
|
:if (memq window-system '(mac ns)))
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
@ -651,7 +649,6 @@
|
|||||||
|
|
||||||
;; Highlight uncommitted changes using VC
|
;; Highlight uncommitted changes using VC
|
||||||
(use-package diff-hl
|
(use-package diff-hl
|
||||||
:defer t
|
|
||||||
:config
|
:config
|
||||||
(global-diff-hl-mode 1))
|
(global-diff-hl-mode 1))
|
||||||
|
|
||||||
@ -944,7 +941,6 @@
|
|||||||
;; LaTeX Back-End for Org Export Engine
|
;; LaTeX Back-End for Org Export Engine
|
||||||
(use-package ox-latex
|
(use-package ox-latex
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:defer t
|
|
||||||
:after org
|
:after org
|
||||||
:config
|
:config
|
||||||
(setq org-export-allow-bind-keywords t
|
(setq org-export-allow-bind-keywords t
|
||||||
@ -1189,8 +1185,8 @@
|
|||||||
(setq gptel-backend (gptel-make-ollama "Ollama"
|
(setq gptel-backend (gptel-make-ollama "Ollama"
|
||||||
:host "localhost:11434"
|
:host "localhost:11434"
|
||||||
:stream t
|
:stream t
|
||||||
:models '("deepseek-r1"))
|
:models '("llama3.1:8b-instruct-q8_0"))
|
||||||
gptel-model "deepseek-r1"
|
gptel-model "llama3"
|
||||||
gptel-api-key (auth-source-pick-first-password
|
gptel-api-key (auth-source-pick-first-password
|
||||||
:host "api.openai.com")))
|
:host "api.openai.com")))
|
||||||
|
|
||||||
@ -1587,7 +1583,6 @@
|
|||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
(use-package clojure-mode
|
(use-package clojure-mode
|
||||||
:defer t
|
|
||||||
:config
|
:config
|
||||||
(setq clojure-toplevel-inside-comment-form t)
|
(setq clojure-toplevel-inside-comment-form t)
|
||||||
(define-clojure-indent
|
(define-clojure-indent
|
||||||
@ -1976,14 +1971,6 @@
|
|||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Zig
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
|
|
||||||
(use-package zig-mode)
|
|
||||||
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
* Which key
|
* Which key
|
||||||
|
|
||||||
[[https://github.com/justbur/emacs-which-key][Which key]] is nice for discoverability.
|
[[https://github.com/justbur/emacs-which-key][Which key]] is nice for discoverability.
|
||||||
|
Loading…
Reference in New Issue
Block a user