update
This commit is contained in:
parent
288d81be1b
commit
12c27cc582
1 changed files with 662 additions and 662 deletions
56
config.org
56
config.org
|
@ -159,7 +159,8 @@
|
||||||
"Goes to the dashboard buffer"
|
"Goes to the dashboard buffer"
|
||||||
(interactive)
|
(interactive)
|
||||||
(switch-to-buffer "*dashboard*")
|
(switch-to-buffer "*dashboard*")
|
||||||
(dashboard-mode))
|
(dashboard-mode)
|
||||||
|
(dashboard-refresh-buffer))
|
||||||
#+end_src
|
#+end_src
|
||||||
* Programs
|
* Programs
|
||||||
Emacs customization, Here is where most of the configuration is.
|
Emacs customization, Here is where most of the configuration is.
|
||||||
|
@ -168,6 +169,7 @@
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
|
(scroll-bar-mode -1)
|
||||||
(global-hl-line-mode)
|
(global-hl-line-mode)
|
||||||
(set-face-background hl-line-face "blue12")
|
(set-face-background hl-line-face "blue12")
|
||||||
(setq-default cursor-type 'box)
|
(setq-default cursor-type 'box)
|
||||||
|
@ -231,9 +233,8 @@
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package base16-theme
|
(use-package base16-theme
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(load-theme 'base16-harmonic-dark t))
|
:init(load-theme 'base16-irblack t))
|
||||||
(set-face-attribute 'default nil :font "IBM Plex Mono 12")
|
|
||||||
(set-frame-font "Source Code Pro 12")
|
|
||||||
(set-cursor-color "purple")
|
(set-cursor-color "purple")
|
||||||
#+end_src
|
#+end_src
|
||||||
** ctrlf
|
** ctrlf
|
||||||
|
@ -309,7 +310,6 @@
|
||||||
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
|
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
|
||||||
(setq c-default-style "k&r")
|
(setq c-default-style "k&r")
|
||||||
(add-hook 'c-mode-hook (lambda ()
|
(add-hook 'c-mode-hook (lambda ()
|
||||||
"" ""
|
|
||||||
(lsp)
|
(lsp)
|
||||||
(irony-mode -1)))
|
(irony-mode -1)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
@ -319,7 +319,7 @@
|
||||||
(setq raku-indent-offset 5)
|
(setq raku-indent-offset 5)
|
||||||
(setq raku-exec-path "/home/qorg/rakudo-star-2021.04/bin/raku")
|
(setq raku-exec-path "/home/qorg/rakudo-star-2021.04/bin/raku")
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Now for indent shit, so it matches the tabsize
|
*** HTML & CSS offset
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(setq css-indent-offset 5)
|
(setq css-indent-offset 5)
|
||||||
(setq sgml-basic-offset 5)
|
(setq sgml-basic-offset 5)
|
||||||
|
@ -337,6 +337,13 @@
|
||||||
;; Syntax highlighting in exports
|
;; Syntax highlighting in exports
|
||||||
(use-package htmlize
|
(use-package htmlize
|
||||||
:ensure t)
|
: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
|
#+end_src
|
||||||
**** Org-agenda
|
**** Org-agenda
|
||||||
>Le attention deficit destroyer
|
>Le attention deficit destroyer
|
||||||
|
@ -476,6 +483,13 @@
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(global-unset-key (kbd "C-q"))
|
:init(global-unset-key (kbd "C-q"))
|
||||||
(global-set-key (kbd"C-q") 'er/expand-region))
|
(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
|
#+end_src
|
||||||
** Beacon mode
|
** Beacon mode
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -493,23 +507,6 @@
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(add-hook 'lsp-mode-hook 'lsp-ui-mode))
|
:init(add-hook 'lsp-mode-hook 'lsp-ui-mode))
|
||||||
#+end_src
|
#+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
|
** Hooks
|
||||||
I am tired of =M-x auto-fill-mode= in some modes
|
I am tired of =M-x auto-fill-mode= in some modes
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -545,6 +542,10 @@
|
||||||
:config
|
:config
|
||||||
(add-hook 'org-mode-hook 'org-bullets-mode))
|
(add-hook 'org-mode-hook 'org-bullets-mode))
|
||||||
(local-unset-key (kbd"C-c C-q"))
|
(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
|
#+end_src
|
||||||
** diff-hl
|
** diff-hl
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -602,10 +603,6 @@
|
||||||
treemacs-indentation-string " "
|
treemacs-indentation-string " "
|
||||||
treemacs-is-never-other-window nil
|
treemacs-is-never-other-window nil
|
||||||
treemacs-max-git-entries 5000
|
treemacs-max-git-entries 5000
|
||||||
(use-package treemacs-evil
|
|
||||||
:after (treemacs evil)
|
|
||||||
:ensure t)
|
|
||||||
|
|
||||||
treemacs-missing-project-action 'ask
|
treemacs-missing-project-action 'ask
|
||||||
treemacs-move-forward-on-expand nil
|
treemacs-move-forward-on-expand nil
|
||||||
treemacs-no-png-images nil
|
treemacs-no-png-images nil
|
||||||
|
@ -697,7 +694,6 @@
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind
|
:bind
|
||||||
("C-x C-f" . 'helm-find-files)
|
("C-x C-f" . 'helm-find-files)
|
||||||
("C-x C-b" . 'helm-buffers-list)
|
|
||||||
("M-x" . 'helm-M-x)
|
("M-x" . 'helm-M-x)
|
||||||
:config
|
:config
|
||||||
(setq helm-autoresize-max-height 0
|
(setq helm-autoresize-max-height 0
|
||||||
|
@ -770,6 +766,10 @@
|
||||||
(setq doom-modeline-indent-info t)
|
(setq doom-modeline-indent-info t)
|
||||||
(setq doom-modeline-buffer-encoding t)
|
(setq doom-modeline-buffer-encoding t)
|
||||||
:init (doom-modeline-mode 1))
|
: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
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue