Merge branch 'master' of notabug.org:mprodrigues/emacs-config
This commit is contained in:
@@ -6,12 +6,18 @@
|
|||||||
'(italic ((t (:slant italic))))
|
'(italic ((t (:slant italic))))
|
||||||
|
|
||||||
;;;; Load my packages
|
;;;; Load my packages
|
||||||
;;Default theme
|
;; Default theme
|
||||||
(use-package zenburn-theme
|
(use-package zenburn-theme
|
||||||
:config
|
:config
|
||||||
(load-theme 'zenburn t))
|
(load-theme 'zenburn t))
|
||||||
|
|
||||||
;; Writing
|
;; Eshell
|
||||||
|
;; (use-package eshell
|
||||||
|
;; :after eshell-mode
|
||||||
|
;; :init
|
||||||
|
;; (load "~/.emacs.d/elisp/eshell-setup.el"))
|
||||||
|
|
||||||
|
;; Org
|
||||||
(use-package org
|
(use-package org
|
||||||
:config
|
:config
|
||||||
(load "~/.emacs.d/elisp/org-setup.el"))
|
(load "~/.emacs.d/elisp/org-setup.el"))
|
||||||
@@ -21,6 +27,7 @@
|
|||||||
:config
|
:config
|
||||||
(load "~/.emacs.d/elisp/org-roam-setup.el"))
|
(load "~/.emacs.d/elisp/org-roam-setup.el"))
|
||||||
|
|
||||||
|
;; Writing
|
||||||
(use-package writeroom-mode)
|
(use-package writeroom-mode)
|
||||||
|
|
||||||
;; modeline
|
;; modeline
|
||||||
@@ -101,6 +108,13 @@
|
|||||||
:config
|
:config
|
||||||
(add-hook 'after-init-hook 'global-company-mode))
|
(add-hook 'after-init-hook 'global-company-mode))
|
||||||
|
|
||||||
|
;; documentation via dash docsets
|
||||||
|
(use-package dash-docs
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(setq dash-docs-browser-func 'eww)
|
||||||
|
(setq dash-docs-enable-debugging nil)))
|
||||||
|
|
||||||
(use-package treemacs
|
(use-package treemacs
|
||||||
:config
|
:config
|
||||||
(global-set-key (kbd "<f3>") 'treemacs))
|
(global-set-key (kbd "<f3>") 'treemacs))
|
||||||
@@ -184,15 +198,23 @@
|
|||||||
:init
|
:init
|
||||||
(setenv "WORKON_HOME" "~/.cache/pypoetry/virtualenvs"))
|
(setenv "WORKON_HOME" "~/.cache/pypoetry/virtualenvs"))
|
||||||
|
|
||||||
;;Ivy related stuff
|
(use-package python-black
|
||||||
|
:straight t
|
||||||
|
;; :demand t
|
||||||
|
:after python
|
||||||
|
:hook (python-mode . python-black-on-save-mode-enable-dwim))
|
||||||
|
|
||||||
|
;; Ivy related stuff
|
||||||
(use-package ivy)
|
(use-package ivy)
|
||||||
(use-package ivy-bibtex
|
(use-package ivy-bibtex
|
||||||
:straight t)
|
:straight t)
|
||||||
(use-package counsel)
|
(use-package counsel)
|
||||||
(use-package swiper)
|
(use-package swiper)
|
||||||
|
(use-package counsel-dash
|
||||||
|
:after (counsel))
|
||||||
(load "~/.emacs.d/elisp/ivy-setup.el")
|
(load "~/.emacs.d/elisp/ivy-setup.el")
|
||||||
|
|
||||||
;;TRAMP
|
;; TRAMP
|
||||||
(load "~/.emacs.d/elisp/tramp-setup.el")
|
(load "~/.emacs.d/elisp/tramp-setup.el")
|
||||||
(load "~/.emacs.d/elisp/outline-keymap.el")
|
(load "~/.emacs.d/elisp/outline-keymap.el")
|
||||||
(load "~/.emacs.d/elisp/bibtex-setup.el")
|
(load "~/.emacs.d/elisp/bibtex-setup.el")
|
||||||
|
|||||||
Reference in New Issue
Block a user