doom/home: install exercism
This commit is contained in:
parent
fd33d7d6f9
commit
7476e38024
3 changed files with 14 additions and 29 deletions
|
@ -1,40 +1,17 @@
|
||||||
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
;; Place your private configuration here! Remember, you do not need to run 'doom
|
(setq user-full-name "liv"
|
||||||
;; sync' after modifying this file!
|
user-mail-address "shadows@with.al")
|
||||||
|
|
||||||
|
;; Set fonts and window sizes conditionally based on what machine Emacs is running on
|
||||||
;; 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:
|
|
||||||
;;
|
|
||||||
(when (string= (system-name) "enoko")
|
(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")
|
(when (string= (system-name) "yukari")
|
||||||
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 19 :weight 'semi-light)))
|
(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
|
;; Load our cute color scheme
|
||||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
|
||||||
;; `load-theme' function. This is the default:
|
|
||||||
(setq catppuccin-flavor 'mocha)
|
(setq catppuccin-flavor 'mocha)
|
||||||
(setq doom-theme 'catppuccin)
|
(setq doom-theme 'catppuccin)
|
||||||
|
|
||||||
|
@ -46,6 +23,10 @@
|
||||||
;; change `org-directory'. It must be set before org loads!
|
;; change `org-directory'. It must be set before org loads!
|
||||||
(setq org-directory "~/Documents/org/")
|
(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
|
;; 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.
|
;; `after!' block, otherwise Doom's defaults may override your settings. E.g.
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
;; Catppucin!
|
;; Catppucin!
|
||||||
(package! catppuccin-theme)
|
(package! catppuccin-theme)
|
||||||
|
|
||||||
|
;; Exercism integration, very useful
|
||||||
|
(package! exercism)
|
||||||
|
|
||||||
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
|
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
|
||||||
;; (package! some-package)
|
;; (package! some-package)
|
||||||
|
|
||||||
|
|
|
@ -32,5 +32,6 @@
|
||||||
flyctl
|
flyctl
|
||||||
httpie
|
httpie
|
||||||
beekeeper-studio
|
beekeeper-studio
|
||||||
|
exercism
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue