Trying devdocs

This commit is contained in:
Emmet 2024-08-10 09:15:41 -05:00
parent 3b29bc4c80
commit ba976f7f5d
3 changed files with 20 additions and 1 deletions

View file

@ -24,6 +24,7 @@
- [[#projectile][Projectile]]
- [[#sudo-edit][sudo-edit]]
- [[#lsp][LSP]]
- [[#devdocs][DevDocs]]
- [[#terminal][Terminal]]
- [[#elfeed][Elfeed]]
- [[#my-initel][My init.el]]
@ -228,6 +229,8 @@ Doom Emacs is traditionally installed by cloning the repository ([[https://githu
(map! :leader :desc "Open dashboard" "b b" #'dashboard-refresh-buffer)
(setq scroll-conservatively 101)
;; Smooth scrolling
;; requires good-scroll.el
;;(good-scroll-mode 1)
@ -1868,8 +1871,15 @@ I don't have this active right now since it's kinda weird with pgtk...
(map! :leader :desc "Find definition using lsp" "L d" #'lsp-find-definition)
#+END_SRC
** DevDocs
#+BEGIN_SRC emacs-lisp :tangle config.el
;; devdocs are cool
(require 'devdocs)
(map! :leader :desc "Peruse devdocs" "L p" #'devdocs-peruse)
#+END_SRC
** Terminal
#+BEGIN_SRC emacs-lisp :tangle config.el
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
@ -2161,6 +2171,7 @@ Any git package can be configured for a particular commit or branch:
(package! sudo-edit)
(package! solaire-mode :disable t)
(package! el-patch)
(package! devdocs)
#+END_SRC
* Nix Integration
In order to have Nix load my Doom Emacs configuration [[./doom.nix][doom.nix]], which I source in the =imports= block of my [[../../../profiles/work/home.nix][home.nix]].