From 7476e380246d7e9cb5037b3a3444ecf4c618a284 Mon Sep 17 00:00:00 2001 From: liv Date: Fri, 11 Oct 2024 13:24:15 +0200 Subject: [PATCH] doom/home: install exercism --- doom_files/config.el | 39 +++++++++------------------------ doom_files/packages.el | 3 +++ home/features/devel/default.nix | 1 + 3 files changed, 14 insertions(+), 29 deletions(-) diff --git a/doom_files/config.el b/doom_files/config.el index da177a7..2b69d36 100644 --- a/doom_files/config.el +++ b/doom_files/config.el @@ -1,40 +1,17 @@ ;;; $DOOMDIR/config.el -*- lexical-binding: t; -*- -;; Place your private configuration here! Remember, you do not need to run 'doom -;; sync' after modifying this file! +(setq user-full-name "liv" + user-mail-address "shadows@with.al") - -;; 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: -;; +;; Set fonts and window sizes conditionally based on what machine Emacs is running on (when (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 25 :weight 'semi-light)) + (add-to-list 'default-frame-alist '(fullscreen . maximized))) (when (string= (system-name) "yukari") (setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 19 :weight 'semi-light))) -;; -;; 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: +;; Load our cute color scheme (setq catppuccin-flavor 'mocha) (setq doom-theme 'catppuccin) @@ -46,6 +23,10 @@ ;; change `org-directory'. It must be set before org loads! (setq org-directory "~/Documents/org/") +;; Configure exercism +(use-package! exercism + :config + (map! :map global-map :nv "SPC o e" #'exercism)) ;; Whenever you reconfigure a package, make sure to wrap your config in an ;; `after!' block, otherwise Doom's defaults may override your settings. E.g. diff --git a/doom_files/packages.el b/doom_files/packages.el index 199c963..c5ee907 100644 --- a/doom_files/packages.el +++ b/doom_files/packages.el @@ -8,6 +8,9 @@ ;; Catppucin! (package! catppuccin-theme) +;; Exercism integration, very useful +(package! exercism) + ;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror: ;; (package! some-package) diff --git a/home/features/devel/default.nix b/home/features/devel/default.nix index 1409836..22fe443 100644 --- a/home/features/devel/default.nix +++ b/home/features/devel/default.nix @@ -32,5 +32,6 @@ flyctl httpie beekeeper-studio + exercism ]; }