From 57bbc3888985d4292db188aaf1ddd154afbbd133 Mon Sep 17 00:00:00 2001 From: qorg11 Date: Sat, 6 Feb 2021 16:42:56 +0100 Subject: [PATCH] rip --- config.org | 51 +++++++++++++++++++-------------------------------- 1 file changed, 19 insertions(+), 32 deletions(-) diff --git a/config.org b/config.org index 3b2c5ae..4a8b326 100644 --- a/config.org +++ b/config.org @@ -138,7 +138,7 @@ (add-hook 'sgml-mode-hook 'zencoding-mode)) #+END_SRC -* customization +* custoxmization Emacs customization, Here is where most of the configuration is. ** Disable bars font and pandoc export optxions. Basic customization. I also use smex instead of default M-x. I @@ -148,7 +148,7 @@ (scroll-bar-mode -1) (tool-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") (use-package smex :ensure t @@ -206,34 +206,10 @@ (add-hook 'org-mode-hook 'org-bullets-mode)) (setq org-hide-emphasis-markers t) (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 ** Theme #+BEGIN_SRC emacs-lisp - (use-package badger-theme - :ensure t - :init (load-theme 'base16-default-dark t)) + (load-theme 'tty-dark t) #+END_SRC ** Lines and columns @@ -440,6 +416,17 @@ #+END_SRC +** Tabs + #+begin_src emacs-lisp + (use-package centaur-tabs + :demand + :config + (centaur-tabs-mode t) + :bind + ("C-" . centaur-tabs-backward) + ("C-" . centaur-tabs-forward)) + (setq centaur-tabs-style "zigzag") + #+end_src * ido 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 @@ -481,11 +468,11 @@ * Line Line, lol #+BEGIN_SRC emacs-lisp -(use-package doom-modeline -:ensure t -:defer 1 - :config - (doom-modeline-mode)) + ;;(use-package doom-modeline + ;;:ensure t + ;;:defer 1 + ;;:config + ;;(doom-modeline-mode)) #+END_SRC * Screenshot