diff --git a/config.org b/config.org index 4df8f17..3b2c5ae 100644 --- a/config.org +++ b/config.org @@ -96,6 +96,8 @@ (save-excursion (indent-region (point-min) (point-max) nil))) (global-set-key (kbd "C-c n") 'indent-buffer) + ;; C bullshit + (c-set-offset 'arglist-cont-nonempty '+) #+END_SRC * Shorcuts @@ -103,7 +105,6 @@ it. I don't think i'd ever use the overwritten. #+BEGIN_SRC emacs-lisp - (global-set-key (kbd "C-c n") 'cleanup-buffer) (global-set-key (kbd "M-m") 'mark-whole-buffer) (use-package sudo-edit :ensure t @@ -147,11 +148,10 @@ (scroll-bar-mode -1) (tool-bar-mode -1) (menu-bar-mode -1) - (set-frame-font "Terminus 18" nil t) + (set-frame-font "Terminus 19" nil t) (load-file "~/.emacs.d/markup.el") (use-package smex :ensure t - :defer 1 :init (global-set-key (kbd "M-x") 'smex)) @@ -208,11 +208,11 @@ (setq org-src-window-setup 'current-window)) (if (display-graphic-p) (let* ((variable-tuple - (cond ((x-list-fonts "IBM Plex Mono") '(:font "IBM Plex Mono")) - ((x-list-fonts "Source Sans Pro") '(:font "IBM Plex Mono")) - ((x-list-fonts "Lucida Grande") '(:font "IBM Plex Mono")) - ((x-list-fonts "IBM Plex Mono") '(:font "IBM Plex Mono")) - ((x-family-fonts "IBM Plex Mono") '(:family "IBM Plex Mono")) + (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))) @@ -223,7 +223,7 @@ `(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.1)))) + `(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)))) @@ -233,13 +233,16 @@ #+BEGIN_SRC emacs-lisp (use-package badger-theme :ensure t - :init (load-theme 'badger t)) + :init (load-theme 'base16-default-dark t)) #+END_SRC -** Relative lines +** Lines and columns #+BEGIN_SRC emacs-lisp - (global-display-line-numbers-mode 1) - (setq display-line-numbers-type 'relative) + (global-display-line-numbers-mode 1) + (setq display-line-numbers-type 'relative) + (global-hl-line-mode 1) + (column-number-mode 1) + #+END_SRC ** Flycheck Flycheck is a syntax validator or somehting like that