Removed theme and changed line
This commit is contained in:
parent
6c09361a35
commit
3d5138a4c2
1 changed files with 12 additions and 38 deletions
48
config.org
48
config.org
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
#+AUTHOR: qorg11
|
#+AUTHOR: qorg11
|
||||||
#+TITLE: emacs config
|
#+TITLE: emacs config
|
||||||
|
|
||||||
|
@ -228,39 +229,6 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
:init
|
:init
|
||||||
(add-hook 'after-init-hook #'global-flycheck-mode))
|
(add-hook 'after-init-hook #'global-flycheck-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** theme
|
|
||||||
Emacs theme, among other things.
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package laguna-theme
|
|
||||||
:ensure t
|
|
||||||
:init
|
|
||||||
(load-theme 'laguna t))
|
|
||||||
|
|
||||||
|
|
||||||
(custom-set-faces
|
|
||||||
'(org-block
|
|
||||||
((t (:background "#333")))))
|
|
||||||
|
|
||||||
;; Org mode fixes
|
|
||||||
(let* ((variable-tuple (cond ((x-list-fonts "Terminus") '(:font "Terminus"))
|
|
||||||
((x-list-fonts "Terminus") '(:font "Terminus"))
|
|
||||||
((x-list-fonts "Terminus") '(:font "Terminus"))
|
|
||||||
((x-family-fonts "Terminus") '(:family "Terminus"))
|
|
||||||
(nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro."))))
|
|
||||||
(base-font-color (face-foreground 'default nil 'default))
|
|
||||||
(headline `(:inherit default :weight bold :foreground ,base-font-color)))
|
|
||||||
|
|
||||||
(custom-theme-set-faces 'user
|
|
||||||
`(org-level-8 ((t (,@headline ,@variable-tuple))))
|
|
||||||
`(org-level-7 ((t (,@headline ,@variable-tuple))))
|
|
||||||
`(org-level-6 ((t (,@headline ,@variable-tuple))))
|
|
||||||
`(org-level-5 ((t (,@headline ,@variable-tuple))))
|
|
||||||
`(org-level-4 ((t (,@headline ,@variable-tuple :height 1))))
|
|
||||||
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1))))
|
|
||||||
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.3))))
|
|
||||||
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.5))))
|
|
||||||
`(org-document-title ((t (,@headline ,@variable-tuple :height 1.5 :underline nil))))))
|
|
||||||
#+END_SRC
|
|
||||||
** AucTeX
|
** AucTeX
|
||||||
This basically opens zathura when compiling with auctex (C-c C-a)
|
This basically opens zathura when compiling with auctex (C-c C-a)
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -490,12 +458,18 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(setq dashboard-set-heading-icons t)
|
(setq dashboard-set-heading-icons t)
|
||||||
(setq dashboard-set-file-icons t))
|
(setq dashboard-set-file-icons t))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* Doom Emacs line
|
* Line
|
||||||
Doom-modeline, because emacs default bar sucks
|
Line, lol
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package doom-modeline
|
(use-package spaceline
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(doom-modeline-mode 1))
|
:config
|
||||||
|
(require 'spaceline-config)
|
||||||
|
(setq spaceline-buffer-encoding-abbrev-p nil)
|
||||||
|
(setq spaceline-line-column-p nil)
|
||||||
|
(setq spaceline-line-p nil)
|
||||||
|
(setq powerline-default-separator (quote arrow))
|
||||||
|
(spaceline-spacemacs-theme))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Screenshot
|
* Screenshot
|
||||||
|
|
Loading…
Add table
Reference in a new issue