move all use-package stuff to one place
This commit is contained in:
parent
af2d6382f3
commit
f3abf4f485
1 changed files with 4 additions and 4 deletions
8
init.el
8
init.el
|
@ -124,10 +124,6 @@
|
|||
;; old M-x, just-in-case
|
||||
(global-set-key (kbd "C-c C-c M-x") 'execute-extended-command)
|
||||
|
||||
;; healthy people weeks are starting on Monday
|
||||
(use-package calendar
|
||||
:init (setq calendar-week-start-day 1))
|
||||
|
||||
;; CC mode default styles
|
||||
(setq c-default-style '((java-mode . "java")
|
||||
(awk-mode . "awk")
|
||||
|
@ -135,6 +131,10 @@
|
|||
(c++-mode . "stroustrup")
|
||||
(other . "linux")))
|
||||
|
||||
;; healthy people weeks are starting on Monday
|
||||
(use-package calendar
|
||||
:init (setq calendar-week-start-day 1))
|
||||
|
||||
(use-package tex-site
|
||||
:defer t
|
||||
:mode ("\\.tex\\'" . latex-mode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue