a
This commit is contained in:
@@ -15,3 +15,5 @@ tramp/
|
|||||||
# MacOS (just in case)
|
# MacOS (just in case)
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,8 +17,9 @@
|
|||||||
:stream t
|
:stream t
|
||||||
:key "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"
|
:key "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"
|
||||||
:models '(google/gemini-2.5-flash
|
:models '(google/gemini-2.5-flash
|
||||||
google/gemini-2.5-pro
|
x-ai/grok-4.1-fast
|
||||||
anthropic/claude-sonnet-4
|
x-ai/grok-code-fast-1
|
||||||
|
google/gemini-3-pro-preview
|
||||||
anthropic/claude-sonnet-4.5)))
|
anthropic/claude-sonnet-4.5)))
|
||||||
|
|
||||||
;; Use org-mode by default for better note-taking
|
;; Use org-mode by default for better note-taking
|
||||||
@@ -169,7 +170,7 @@
|
|||||||
(interactive)
|
(interactive)
|
||||||
(when (use-region-p)
|
(when (use-region-p)
|
||||||
(gptel-rewrite-region (region-beginning) (region-end)
|
(gptel-rewrite-region (region-beginning) (region-end)
|
||||||
"Fix spelling, grammar, and improve clarity. Keep the same tone and style.")))
|
"Fix spelling, grammar, and improve clarity. Keep the same tone and style.")))
|
||||||
|
|
||||||
;; Add keybindings for helper functions
|
;; Add keybindings for helper functions
|
||||||
(map! :leader
|
(map! :leader
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
(load! "ai")
|
(load! "ai")
|
||||||
(load! "inbox")
|
(load! "inbox")
|
||||||
(load! "metrics")
|
(load! "metrics")
|
||||||
|
(load! "theme")
|
||||||
|
|
||||||
;; Performance tweaks
|
;; Performance tweaks
|
||||||
(setq gc-cons-threshold 100000000 ; Increase GC threshold to 100MB
|
(setq gc-cons-threshold 100000000 ; Increase GC threshold to 100MB
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
;;; -*- lexical-binding: t -*-
|
||||||
|
(custom-set-variables
|
||||||
|
;; custom-set-variables was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
'(custom-safe-themes
|
||||||
|
'("d481904809c509641a1a1f1b1eb80b94c58c210145effc2631c1a7f2e4a2fdf4"
|
||||||
|
"039112154ee5166278a7b65790c665fe17fd21c84356b7ad4b90c29ffe0ad606"
|
||||||
|
"b58b5aa5664a927866daa481ae5f0795423ed3982ce5f64e56c4106261dbd13e" default)))
|
||||||
|
(custom-set-faces
|
||||||
|
;; custom-set-faces was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
)
|
||||||
@@ -28,3 +28,5 @@
|
|||||||
:desc "Toggle command log" "L" #'clm/toggle-command-log-buffer))
|
:desc "Toggle command log" "L" #'clm/toggle-command-log-buffer))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+4
-1
@@ -1,5 +1,5 @@
|
|||||||
;; -*- no-byte-compile: t; -*-
|
|
||||||
;;; $DOOMDIR/packages.el
|
;;; $DOOMDIR/packages.el
|
||||||
|
;; -*- no-byte-compile: t; -*-
|
||||||
|
|
||||||
(package! super-save)
|
(package! super-save)
|
||||||
|
|
||||||
@@ -54,3 +54,6 @@
|
|||||||
;; Usage metrics and key tracking
|
;; Usage metrics and key tracking
|
||||||
(package! keyfreq)
|
(package! keyfreq)
|
||||||
(package! command-log-mode)
|
(package! command-log-mode)
|
||||||
|
|
||||||
|
;; Theme
|
||||||
|
(package! base16-theme)
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
;;; theme.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
|
;; Configure base16-theme
|
||||||
|
;; https://github.com/tinted-theming/base16-emacs
|
||||||
|
|
||||||
|
;; Set customization variables before loading the theme
|
||||||
|
;; (Optional: adjust these as needed)
|
||||||
|
(setq base16-distinct-fringe-background t
|
||||||
|
base16-highlight-mode-line 'box)
|
||||||
|
|
||||||
|
;; Set the theme to base16-default-dark
|
||||||
|
;; This overrides any theme set in core.el
|
||||||
|
(setq doom-theme 'base16-default-dark)
|
||||||
Reference in New Issue
Block a user