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