doom: Updates
parent
aa45d8092f
commit
304206bc10
|
@ -35,6 +35,10 @@ when this is not the case"
|
|||
(after! doom-modeline
|
||||
(setq doom-modeline-persp-name t))
|
||||
|
||||
;; pdf-tools
|
||||
;; Always use midnight view with pdf-tools
|
||||
(add-hook 'pdf-tools-enabled-hook 'pdf-view-midnight-minor-mode)
|
||||
|
||||
;; Also from Tecosaur's config (modified slightly): better window title
|
||||
(setq frame-title-format
|
||||
'(""
|
||||
|
|
|
@ -94,6 +94,7 @@
|
|||
;;ein ; tame Jupyter notebooks with emacs
|
||||
(eval +overlay) ; run code, run (also, repls)
|
||||
;;gist ; interacting with github gists
|
||||
just
|
||||
lookup ; navigate your code and its documentation
|
||||
(lsp +peek) ; M-x vscode
|
||||
magit ; a git porcelain for Emacs
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
;;; tools/just/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(use-package! just-mode)
|
||||
|
||||
(use-package! justl
|
||||
:config
|
||||
(map! :n "e" 'justl-exec-recipe))
|
|
@ -0,0 +1,5 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; tools/just/packages.el
|
||||
|
||||
(package! just-mode :pin "35f1bd4748cd3e960e6930b34310e5506212b304")
|
||||
(package! justl :pin "4dc372cb416912c795ae1fca62081d5aea0b2703")
|
|
@ -0,0 +1,7 @@
|
|||
# -*- mode: snippet -*-
|
||||
# name: "rightarrow"
|
||||
# uuid:
|
||||
# key: rarr
|
||||
# condition: t
|
||||
# --
|
||||
\rightarrow
|
Loading…
Reference in New Issue