mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
76 lines
2.7 KiB
EmacsLisp
76 lines
2.7 KiB
EmacsLisp
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
|
|
|
;; Place your private configuration here! Remember, you do not need to run 'doom
|
|
;; sync' after modifying this file!
|
|
|
|
|
|
;; Some functionality uses this to identify you, e.g. GPG configuration, email
|
|
;; clients, file templates and snippets. It is optional.
|
|
;; (setq user-full-name "John Doe"
|
|
;; user-mail-address "john@doe.com")
|
|
|
|
;; Doom exposes five (optional) variables for controlling fonts in Doom:
|
|
;;
|
|
;; - `doom-font' -- the primary font to use
|
|
;; - `doom-variable-pitch-font' -- a non-monospace font (where applicable)
|
|
;; - `doom-big-font' -- used for `doom-big-font-mode'; use this for
|
|
;; presentations or streaming.
|
|
;; - `doom-symbol-font' -- for symbols
|
|
;; - `doom-serif-font' -- for the `fixed-pitch-serif' face
|
|
;;
|
|
;; See 'C-h v doom-font' for documentation and more examples of what they
|
|
;; accept. For example:
|
|
;;
|
|
;;(setq doom-font (font-spec :family "Fira Code" :size 12 :weight 'semi-light)
|
|
;; doom-variable-pitch-font (font-spec :family "Fira Sans" :size 13))
|
|
;;
|
|
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
|
|
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
|
;; refresh your font settings. If Emacs still can't find your font, it likely
|
|
;; wasn't installed correctly. Font issues are rarely Doom issues!
|
|
|
|
;; There are two ways to load a theme. Both assume the theme is installed and
|
|
;; available. You can either set `doom-theme' or manually load a theme with the
|
|
;; `load-theme' function. This is the default:
|
|
(setq doom-theme 'catppuccin)
|
|
(setq catppuccin-flavor 'macchiato)
|
|
|
|
;; This determines the style of line numbers in effect. If set to `nil', line
|
|
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
|
(setq display-line-numbers-type t)
|
|
|
|
;; If you use `org' and don't want your org files in the default location below,
|
|
;; change `org-directory'. It must be set before org loads!
|
|
(setq org-directory "~/org/")
|
|
|
|
(add-hook 'prog-mode-hook #'rainbow-delimiters-mode)
|
|
|
|
(setq elfeed-feeds '(("https://lobste.rs/rss" tech)
|
|
("https://news.ycombinator.com/rss" tech)))
|
|
|
|
(add-hook 'clojure-mode #'paredit-mode)
|
|
(add-hook 'emacs-lisp-mode #'paredit-mode)
|
|
|
|
(after! paredit
|
|
(define-key paredit-mode-map (kbd "C-<left>") nil)
|
|
(define-key paredit-mode-map (kbd "C-<right>") nil)
|
|
|
|
(map! :nvi
|
|
|
|
:desc "Forward barf"
|
|
"M-<left>" #'paredit-forward-barf-sexp
|
|
|
|
:desc "Forward slurp"
|
|
"M-<right>" #'paredit-forward-slurp-sexp
|
|
|
|
:desc "Backward slurp"
|
|
"M-S-<left>" #'paredit-backward-slurp-sexp
|
|
|
|
:desc "Backward barf"
|
|
"M-S-<right>" #'paredit-backward-barf-sexp
|
|
|
|
:desc "Backward"
|
|
"C-c <left>" #'paredit-backward
|
|
|
|
:desc "Forward"
|
|
"C-c <right>" #'paredit-forward))
|