update doom config

This commit is contained in:
insects 2024-12-24 14:03:56 +01:00
parent cfa7bdd5c6
commit 32a4d9b23c
3 changed files with 31 additions and 47 deletions

View file

@ -1,17 +1,14 @@
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
(setq user-full-name "liv"
user-mail-address "shadows@with.al")
(setq user-full-name "pelsh"
user-mail-address "mail@liv.nrw")
;; Set fonts and window sizes
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(if (string= (system-name) "enoko")
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 25 :weight 'semi-light))
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 17 :weight 'semi-light)))
(setq doom-font (font-spec :family "Recursive Mono Casual Static" :size 25 :weight 'semi-light))
(setq doom-font (font-spec :family "Recursive Mono Casual Static" :size 17 :weight 'semi-light)))
;; Load our cute color scheme
(setq catppuccin-flavor 'mocha)
@ -28,15 +25,6 @@
;; Set our tab-width
(setq-default tab-width 2)
;; Configure exercism
(use-package! exercism
:config
(map! :map global-map :nv "SPC o e" #'exercism))
;; Increase Nix LSP memory limit
(after! lsp-mode
(setq lsp-nix-nil-max-mem 15000))
(map! :leader :desc "Find in Chezmoi dotfiles" :n "f ." #'chezmoi-find)
(map! :leader :desc "Save a Chezmoi dotfile" :n "f ," #'chezmoi-write)