This commit is contained in:
qorg11 2022-05-10 10:43:25 +02:00
parent 288d81be1b
commit 12c27cc582
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -159,7 +159,8 @@
"Goes to the dashboard buffer"
(interactive)
(switch-to-buffer "*dashboard*")
(dashboard-mode))
(dashboard-mode)
(dashboard-refresh-buffer))
#+end_src
* Programs
Emacs customization, Here is where most of the configuration is.
@ -168,6 +169,7 @@
#+BEGIN_SRC emacs-lisp
(tool-bar-mode -1)
(menu-bar-mode -1)
(scroll-bar-mode -1)
(global-hl-line-mode)
(set-face-background hl-line-face "blue12")
(setq-default cursor-type 'box)
@ -231,9 +233,8 @@
#+begin_src emacs-lisp
(use-package base16-theme
:ensure t
:init(load-theme 'base16-harmonic-dark t))
(set-face-attribute 'default nil :font "IBM Plex Mono 12")
(set-frame-font "Source Code Pro 12")
:init(load-theme 'base16-irblack t))
(set-cursor-color "purple")
#+end_src
** ctrlf
@ -309,7 +310,6 @@
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
(setq c-default-style "k&r")
(add-hook 'c-mode-hook (lambda ()
"" ""
(lsp)
(irony-mode -1)))
#+END_SRC
@ -319,7 +319,7 @@
(setq raku-indent-offset 5)
(setq raku-exec-path "/home/qorg/rakudo-star-2021.04/bin/raku")
#+end_src
*** Now for indent shit, so it matches the tabsize
*** HTML & CSS offset
#+begin_src emacs-lisp
(setq css-indent-offset 5)
(setq sgml-basic-offset 5)
@ -337,6 +337,13 @@
;; Syntax highlighting in exports
(use-package htmlize
:ensure t)
(setq org-html-head ""
org-html-head-extra ""
org-html-head-include-default-style nil
org-html-head-include-scripts nil
org-html-preamble nil
org-html-postamble nil
org-html-use-infojs nil)
#+end_src
**** Org-agenda
>Le attention deficit destroyer
@ -476,6 +483,13 @@
:ensure t
:init(global-unset-key (kbd "C-q"))
(global-set-key (kbd"C-q") 'er/expand-region))
(defun qorg/mark-words-between-quotes ()
"Does that."
(interactive)
(er/expand-region 2))
(global-set-key (kbd "C-c q") 'qorg/mark-words-between-quotes)
#+end_src
** Beacon mode
#+begin_src emacs-lisp
@ -493,23 +507,6 @@
:ensure t
:init(add-hook 'lsp-mode-hook 'lsp-ui-mode))
#+end_src
** Workspaces
I'm a tilling window manager user, so i know what i'm talking about.
#+begin_src emacs-lisp
; (use-package "workgroups"
; :ensure t
; :init(workgroups-mode 1))
#+end_src
** Buffers
Well, you know sometimes you just want to change to the previous
buffer and don't want a whole interface for just pressing enter.
#+begin_src emacs-lisp
(defun switch-to-previous-buffer ()
(interactive)
(switch-to-buffer (other-buffer (current-buffer) 1)))
(global-set-key (kbd "C-x C-b") 'switch-to-previous-buffer)
#+end_src
** Hooks
I am tired of =M-x auto-fill-mode= in some modes
#+begin_src emacs-lisp
@ -545,6 +542,10 @@
:config
(add-hook 'org-mode-hook 'org-bullets-mode))
(local-unset-key (kbd"C-c C-q"))
(set-face-font 'org-level-1 "IBM Plex Mono 16")
(set-face-font 'org-level-2 "IBM Plex Mono 15")
(set-face-font 'org-level-3 "IBM Plex Mono 14")
#+end_src
** diff-hl
#+begin_src emacs-lisp
@ -602,10 +603,6 @@
treemacs-indentation-string " "
treemacs-is-never-other-window nil
treemacs-max-git-entries 5000
(use-package treemacs-evil
:after (treemacs evil)
:ensure t)
treemacs-missing-project-action 'ask
treemacs-move-forward-on-expand nil
treemacs-no-png-images nil
@ -697,7 +694,6 @@
:ensure t
:bind
("C-x C-f" . 'helm-find-files)
("C-x C-b" . 'helm-buffers-list)
("M-x" . 'helm-M-x)
:config
(setq helm-autoresize-max-height 0
@ -770,6 +766,10 @@
(setq doom-modeline-indent-info t)
(setq doom-modeline-buffer-encoding t)
:init (doom-modeline-mode 1))
;; Don't ask why the font thing is here.
(set-face-attribute 'default nil :font "Tamsyn 14")
(set-frame-font "Tamsyn 14")
(set-frame-font "Tamsyn 14")
#+end_src