Fixed the entire config.org file

This commit is contained in:
qorg11 2022-02-05 21:33:42 +01:00
parent 1fb4e10735
commit d4eb8f9885
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -142,15 +142,18 @@
* customization
Emacs customization, Here is where most of the configuration is.
** Disable bars font and pandoc export optxions.
** Pseudopersonalization
The basic emacs persdonalization lol
#+BEGIN_SRC emacs-lisp
(tool-bar-mode -1)
(menu-bar-mode -1)
(set-frame-font "Terminus 14" nil t)
(global-hl-line-mode)
(setq-default cursor-type 'box)
(blink-cursor-mode 1)
(setq-default major-mode 'text-mode)
(defalias 'yes-or-no-p 'y-or-n-p)
#+END_SRC
** Highlight matching parentheses
#+BEGIN_SRC emacs-lisp
(show-paren-mode 1)
@ -170,7 +173,6 @@
#+BEGIN_SRC emacs-lisp
(global-display-line-numbers-mode 1)
(setq display-line-numbers-type 'relative)
(global-hl-line-mode 1)
(column-number-mode 1)
#+END_SRC
** Flycheck
@ -180,11 +182,15 @@
:ensure t
:init
(add-hook 'after-init-hook #'global-flycheck-mode))
#+END_SRC
And for raku
#+BEGIN_SRC emacs-lisp
(use-package flycheck-raku
:ensure t
:init
(add-hook 'raku-mode 'flycheck-raku-mode))
#+END_SRC
** Shell
#+BEGIN_SRC emacs-lisp
(setq shell "/bin/mksh")
@ -199,7 +205,7 @@
:ensure t
:init(load-theme 'darktooth t))
#+end_src
** Swiper
** ctrlf
#+BEGIN_SRC emacs-lisp
(use-package ctrlf
:ensure t
@ -216,7 +222,7 @@
:ensure t
:config
(setq company-idle-delay 0)
(setq company-minimum-prefix-length 1)
(setq company-minimum-prefix-length 3)
(global-company-mode))
(with-eval-after-load 'company
(define-key company-active-map (kbd "M-n") nil)
@ -240,14 +246,6 @@
(with-eval-after-load 'company
(add-hook 'c-mode-hook 'company-mode))
#+END_SRC
** Idk what to name this
Here I put things you can do in M-x or something idk
#+BEGIN_SRC emacs-lisp
(blink-cursor-mode 0)
(global-hl-line-mode 0)
(setq-default cursor-type 'box)
(blink-cursor-mode 1)
#+END_SRC
** Programming language things
*** Lisp
Parentheses highlight in lisp modes. So you can easily identify
@ -260,11 +258,13 @@
(add-hook 'lisp-mode-hook 'rainbow-delimiters-mode)
(add-hook 'scheme-mode-hook 'rainbow-delimiters-mode))
(setq lisp-indent-offset 5)
#+END_SRC
*** Perl
Cperl-mode is better than perl-mode. You can't change my mind.
#+BEGIN_SRC emacs-lisp
(defalias 'perl-mode 'cperl-mode)
(setq cperl-indent-level 5)
#+END_SRC
*** C*
@ -278,6 +278,11 @@
(add-hook 'c-mode-hook 'c-turn-on-eldoc-mode))
(setq c-default-style "k&r")
#+END_SRC
*** Raku
#+begin_src emacs-lisp
#+end_src
** Extra functions
Here I put functions I won't bother to document because they're so
@ -408,13 +413,19 @@
#+end_src
** Ace jump mode
So you can jump to characters fast af
#+begin_src emacs-lisp
(use-package "ace-jump-mode"
:ensure t
:bind("C-l" . 'ace-jump-mode))
#+end_src
** Expand region
#+begin_src emacs-lisp
(use-package expand-region
:ensure t
:bind ("C-c C-e" . 'er/expand-region))
#+end_src
* Helm
fuck helm lol
@ -472,3 +483,4 @@
:init (telephone-line-mode 1))
#+end_src