whatever i did

This commit is contained in:
qorg11 2020-12-30 01:31:51 +01:00
parent badb1cc67a
commit 20d9f6574b
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

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