Update use-package configs
This commit is contained in:
parent
2fd703ed3a
commit
1aa87a0c46
2 changed files with 23 additions and 17 deletions
|
@ -55,7 +55,7 @@
|
|||
'(package-enable-at-startup t)
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme org toc-org ox-reveal ace-window htmlize ivy magit)))
|
||||
(eglot projectile elpy color-theme-sanityinc-tomorrow nov markdown-mode markdown-preview-mode olivetti web-mode js2-mode slime flymake-racket racket-mode yaml-mode lua-mode nordless-theme use-package colorless-themes nord-theme org toc-org ox-reveal ace-window htmlize ivy magit)))
|
||||
'(python-shell-interpreter "python3")
|
||||
'(scroll-bar-mode nil)
|
||||
'(tool-bar-mode nil)
|
||||
|
|
18
init.el
18
init.el
|
@ -80,7 +80,10 @@ There are two things you can do about this warning:
|
|||
(defalias 'yes-or-no-p 'y-or-n-p)
|
||||
|
||||
;; PACKAGES
|
||||
(ivy-mode 1)
|
||||
(use-package ivy
|
||||
:ensure t
|
||||
:init
|
||||
(ivy-mode 1))
|
||||
|
||||
(use-package nov
|
||||
:ensure t
|
||||
|
@ -96,8 +99,8 @@ There are two things you can do about this warning:
|
|||
:ensure t)
|
||||
|
||||
(use-package eglot
|
||||
:ensure t
|
||||
:hook ((python-mode . eglot-ensure)))
|
||||
:ensure t
|
||||
:hook ((python-mode . eglot-ensure)))
|
||||
|
||||
(use-package js2-mode
|
||||
:ensure t
|
||||
|
@ -142,8 +145,10 @@ There are two things you can do about this warning:
|
|||
|
||||
(add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode))
|
||||
|
||||
;; ORG_MODE SETTINGS
|
||||
(setq org-agenda-dim-blocked-tasks nil
|
||||
(use-package org
|
||||
:ensure t
|
||||
:config
|
||||
(setq org-agenda-dim-blocked-tasks nil
|
||||
org-agenda-inhibit-startup nil
|
||||
org-babel-shell-names (quote ("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh"))
|
||||
org-clock-persist t
|
||||
|
@ -154,7 +159,8 @@ There are two things you can do about this warning:
|
|||
org-startup-folded t
|
||||
org-startup-truncated nil
|
||||
org-todo-keywords (quote ((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED")))
|
||||
org-use-property-inheritance nil)
|
||||
org-use-property-inheritance nil))
|
||||
|
||||
(org-clock-persistence-insinuate)
|
||||
|
||||
;; HOOKS
|
||||
|
|
Loading…
Add table
Reference in a new issue