doom-emacs: add cmake-ide package and tweak fonts
la-ninpre leobrekalini@gmail.com
Thu, 02 Sep 2021 13:04:10 +0300
2 files changed,
7 insertions(+),
2 deletions(-)
M
doom-emacs/.config/doom/config.el
→
doom-emacs/.config/doom/config.el
@@ -29,8 +29,8 @@ ;; `load-theme' function. This is the default:
(setq doom-theme 'la-ninpre) -(setq doom-font (font-spec :family "JetBrains Mono" :size 14 :weight 'medium) - doom-big-font (font-spec :family "JetBrains Mono" :size 36) +(setq doom-font (font-spec :family "JetBrains Mono" :size 14 :weight 'medium :style 'medium) + doom-big-font (font-spec :family "JetBrains Mono" :size 36 :weight 'medium) doom-unicode-font (font-spec :family "Noto") doom-serif-font (font-spec :family "Noto Serif") doom-variable-pitch-font (font-spec :family "Lato" :size 14))@@ -175,6 +175,9 @@ (add-hook 'html-mode-hook 'xah-syntax-color-hex)
(add-hook 'c++-mode-hook 'irony-mode) (add-hook 'c-mode-hook 'irony-mode) + +(require 'rtags) +(cmake-ide-setup) ;; Here are some additional functions/macros that could help you configure Doom: ;;
M
doom-emacs/.config/doom/packages.el
→
doom-emacs/.config/doom/packages.el
@@ -50,3 +50,5 @@ ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
;(unpin! t) (package! evil-tutor) + +(package! cmake-ide)