Merge branch 'master' of fudo.dev:niten/doom-emacs
This commit is contained in:
commit
1f1b186a30
6
init.el
6
init.el
|
@ -64,7 +64,7 @@
|
||||||
;;parinfer ; turn lisp into python, sort of
|
;;parinfer ; turn lisp into python, sort of
|
||||||
;;rotate-text ; cycle region at point between text candidates
|
;;rotate-text ; cycle region at point between text candidates
|
||||||
snippets ; my elves. They type so I don't have to
|
snippets ; my elves. They type so I don't have to
|
||||||
;;word-wrap ; soft wrapping with language-aware indent
|
word-wrap ; soft wrapping with language-aware indent
|
||||||
|
|
||||||
:emacs
|
:emacs
|
||||||
dired ; making dired pretty [functional]
|
dired ; making dired pretty [functional]
|
||||||
|
@ -95,8 +95,8 @@
|
||||||
;;ein ; tame Jupyter notebooks with emacs
|
;;ein ; tame Jupyter notebooks with emacs
|
||||||
(eval +overlay) ; run code, run (also, repls)
|
(eval +overlay) ; run code, run (also, repls)
|
||||||
;;gist ; interacting with github gists
|
;;gist ; interacting with github gists
|
||||||
lookup ; navigate your code and its documentation
|
(lookup +dictionary +docsets +offline) ; navigate your code and its documentation
|
||||||
(lsp +eglot) ; M-x vscode
|
(lsp +eglot peek) ; M-x vscode
|
||||||
magit ; a git porcelain for Emacs
|
magit ; a git porcelain for Emacs
|
||||||
make ; run make tasks from Emacs
|
make ; run make tasks from Emacs
|
||||||
;;pass ; password manager for nerds
|
;;pass ; password manager for nerds
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
(package! elpher)
|
(package! elpher)
|
||||||
(package! edit-server)
|
(package! edit-server)
|
||||||
(package! ivy-prescient)
|
(package! ivy-prescient)
|
||||||
(package! ace-jump-mode)
|
; (package! ace-jump-mode)
|
||||||
(package! noflet)
|
(package! noflet)
|
||||||
(package! org-roam)
|
(package! org-roam)
|
||||||
(package! flycheck-clj-kondo)
|
(package! flycheck-clj-kondo)
|
||||||
|
|
|
@ -43,7 +43,11 @@
|
||||||
:desc "Increase font size" "+" #'text-scale-increase
|
:desc "Increase font size" "+" #'text-scale-increase
|
||||||
:desc "Decrease font size" "-" #'text-scale-decrease
|
:desc "Decrease font size" "-" #'text-scale-decrease
|
||||||
|
|
||||||
;;; <leader> V --- views
|
:desc "Jump to character" "." #'avy-goto-char-timer
|
||||||
|
:desc "Jump to line" "," #'avy-goto-line
|
||||||
|
:desc "Open eshell here" "!" #'eshell-here
|
||||||
|
|
||||||
|
;;; <leader> V --- views
|
||||||
(:prefix-map ("V" . "views")
|
(:prefix-map ("V" . "views")
|
||||||
:desc "Add view" "v" #'ivy-push-view
|
:desc "Add view" "v" #'ivy-push-view
|
||||||
:desc "Pop view" "p" #'ivy-pop-view)
|
:desc "Pop view" "p" #'ivy-pop-view)
|
||||||
|
|
Loading…
Reference in New Issue