add ipe styles
This commit is contained in:
parent
8c99eda444
commit
1872a7236b
2 changed files with 378 additions and 8 deletions
|
|
@ -1,5 +1,9 @@
|
|||
(require 'package)
|
||||
|
||||
;; auto install all packages called by =use-package=
|
||||
(require 'use-package-ensure)
|
||||
(setq use-package-always-ensure t)
|
||||
|
||||
;; add package archives
|
||||
(setq package-archives
|
||||
'(("melpa" . "https://melpa.org/packages/")
|
||||
|
|
@ -8,10 +12,6 @@
|
|||
("nongnu" . "https://elpa.nongnu.org/nongnu/")
|
||||
))
|
||||
|
||||
;; auto install all packages called by =use-package=
|
||||
(require 'use-package-ensure)
|
||||
(setq use-package-always-ensure t)
|
||||
|
||||
(setq inhibit-startup-message t
|
||||
use-dialog-box nil)
|
||||
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
(setq modus-themes-italic-constructs t
|
||||
modus-themes-bold-constructs t
|
||||
modus-themes-mixed-fonts t
|
||||
modus-themes-variable-pitch-ui nil)
|
||||
modus-themes-variable-pitch-ui t)
|
||||
|
||||
(setq modus-themes-headings
|
||||
'((1 . (1.4))
|
||||
|
|
@ -43,16 +43,21 @@
|
|||
|
||||
;; Turn off some unneeded UI elements
|
||||
(menu-bar-mode 1) ; Leave this one on if you're a beginner!
|
||||
(tool-bar-mode -1)
|
||||
(scroll-bar-mode -1)
|
||||
(tool-bar-mode 0)
|
||||
(scroll-bar-mode 0)
|
||||
|
||||
;; Turn on some QOL
|
||||
(add-hook 'prog-mode-hook 'display-line-numbers-mode)
|
||||
(global-display-line-numbers-mode 1)
|
||||
;; (global-display-line-numbers-mode 1)
|
||||
(global-hl-line-mode 1)
|
||||
(global-visual-line-mode 1)
|
||||
(blink-cursor-mode 0)
|
||||
; (global-display-fill-column-indicator-mode 1)
|
||||
(which-key-mode 1)
|
||||
(recentf-mode 1)
|
||||
(savehist-mode 1)
|
||||
(save-place-mode 1)
|
||||
(setq make-backup-files nil)
|
||||
|
||||
(use-package magit)
|
||||
(use-package auctex)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue