rip
This commit is contained in:
parent
20d9f6574b
commit
57bbc38889
1 changed files with 19 additions and 32 deletions
51
config.org
51
config.org
|
@ -138,7 +138,7 @@
|
||||||
(add-hook 'sgml-mode-hook 'zencoding-mode))
|
(add-hook 'sgml-mode-hook 'zencoding-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* customization
|
* custoxmization
|
||||||
Emacs customization, Here is where most of the configuration is.
|
Emacs customization, Here is where most of the configuration is.
|
||||||
** Disable bars font and pandoc export optxions.
|
** Disable bars font and pandoc export optxions.
|
||||||
Basic customization. I also use smex instead of default M-x. I
|
Basic customization. I also use smex instead of default M-x. I
|
||||||
|
@ -148,7 +148,7 @@
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
(set-frame-font "Terminus 19" nil t)
|
(set-frame-font "Terminus 17" nil t)
|
||||||
(load-file "~/.emacs.d/markup.el")
|
(load-file "~/.emacs.d/markup.el")
|
||||||
(use-package smex
|
(use-package smex
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -206,34 +206,10 @@
|
||||||
(add-hook 'org-mode-hook 'org-bullets-mode))
|
(add-hook 'org-mode-hook 'org-bullets-mode))
|
||||||
(setq org-hide-emphasis-markers t)
|
(setq org-hide-emphasis-markers t)
|
||||||
(setq org-src-window-setup 'current-window))
|
(setq org-src-window-setup 'current-window))
|
||||||
(if (display-graphic-p)
|
|
||||||
(let* ((variable-tuple
|
|
||||||
(cond ((x-list-fonts "Terminus (TTF)") '(:font "Terminus (TTF)"))
|
|
||||||
((x-list-fonts "Source Sans Pro") '(:font "Terminus (TTF)"))
|
|
||||||
((x-list-fonts "Lucida Grande") '(:font "Terminus (TTF)"))
|
|
||||||
((x-list-fonts "Terminus (TTF)") '(:font "Terminus (TTF)"))
|
|
||||||
((x-family-fonts "Terminus (TTF)") '(:family "Terminus (TTF)"))
|
|
||||||
(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.0))))
|
|
||||||
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.1))))
|
|
||||||
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.2))))
|
|
||||||
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.3))))
|
|
||||||
`(org-document-title ((t (,@headline ,@variable-tuple :height 2.0 :underline nil)))))))
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Theme
|
** Theme
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package badger-theme
|
(load-theme 'tty-dark t)
|
||||||
:ensure t
|
|
||||||
:init (load-theme 'base16-default-dark t))
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Lines and columns
|
** Lines and columns
|
||||||
|
@ -440,6 +416,17 @@
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** Tabs
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package centaur-tabs
|
||||||
|
:demand
|
||||||
|
:config
|
||||||
|
(centaur-tabs-mode t)
|
||||||
|
:bind
|
||||||
|
("C-<prior>" . centaur-tabs-backward)
|
||||||
|
("C-<next>" . centaur-tabs-forward))
|
||||||
|
(setq centaur-tabs-style "zigzag")
|
||||||
|
#+end_src
|
||||||
* ido
|
* ido
|
||||||
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here
|
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here
|
||||||
I rebinded C-x C-b to ido-switch-buffer because I always press C-x
|
I rebinded C-x C-b to ido-switch-buffer because I always press C-x
|
||||||
|
@ -481,11 +468,11 @@
|
||||||
* Line
|
* Line
|
||||||
Line, lol
|
Line, lol
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package doom-modeline
|
;;(use-package doom-modeline
|
||||||
:ensure t
|
;;:ensure t
|
||||||
:defer 1
|
;;:defer 1
|
||||||
:config
|
;;:config
|
||||||
(doom-modeline-mode))
|
;;(doom-modeline-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Screenshot
|
* Screenshot
|
||||||
|
|
Loading…
Add table
Reference in a new issue