Fixed the entire config.org file
This commit is contained in:
parent
1fb4e10735
commit
d4eb8f9885
1 changed files with 175 additions and 163 deletions
40
config.org
40
config.org
|
@ -142,15 +142,18 @@
|
||||||
|
|
||||||
* customization
|
* customization
|
||||||
Emacs customization, Here is where most of the configuration is.
|
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
|
#+BEGIN_SRC emacs-lisp
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
(set-frame-font "Terminus 14" nil t)
|
(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)
|
(setq-default major-mode 'text-mode)
|
||||||
(defalias 'yes-or-no-p 'y-or-n-p)
|
(defalias 'yes-or-no-p 'y-or-n-p)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Highlight matching parentheses
|
** Highlight matching parentheses
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(show-paren-mode 1)
|
(show-paren-mode 1)
|
||||||
|
@ -170,7 +173,6 @@
|
||||||
#+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)
|
(column-number-mode 1)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Flycheck
|
** Flycheck
|
||||||
|
@ -180,11 +182,15 @@
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
(add-hook 'after-init-hook #'global-flycheck-mode))
|
(add-hook 'after-init-hook #'global-flycheck-mode))
|
||||||
|
#+END_SRC
|
||||||
|
And for raku
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package flycheck-raku
|
(use-package flycheck-raku
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
(add-hook 'raku-mode 'flycheck-raku-mode))
|
(add-hook 'raku-mode 'flycheck-raku-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Shell
|
** Shell
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq shell "/bin/mksh")
|
(setq shell "/bin/mksh")
|
||||||
|
@ -199,7 +205,7 @@
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(load-theme 'darktooth t))
|
:init(load-theme 'darktooth t))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Swiper
|
** ctrlf
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package ctrlf
|
(use-package ctrlf
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -216,7 +222,7 @@
|
||||||
:ensure t
|
:ensure t
|
||||||
:config
|
:config
|
||||||
(setq company-idle-delay 0)
|
(setq company-idle-delay 0)
|
||||||
(setq company-minimum-prefix-length 1)
|
(setq company-minimum-prefix-length 3)
|
||||||
(global-company-mode))
|
(global-company-mode))
|
||||||
(with-eval-after-load 'company
|
(with-eval-after-load 'company
|
||||||
(define-key company-active-map (kbd "M-n") nil)
|
(define-key company-active-map (kbd "M-n") nil)
|
||||||
|
@ -240,14 +246,6 @@
|
||||||
(with-eval-after-load 'company
|
(with-eval-after-load 'company
|
||||||
(add-hook 'c-mode-hook 'company-mode))
|
(add-hook 'c-mode-hook 'company-mode))
|
||||||
#+END_SRC
|
#+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
|
** Programming language things
|
||||||
*** Lisp
|
*** Lisp
|
||||||
Parentheses highlight in lisp modes. So you can easily identify
|
Parentheses highlight in lisp modes. So you can easily identify
|
||||||
|
@ -260,11 +258,13 @@
|
||||||
(add-hook 'lisp-mode-hook 'rainbow-delimiters-mode)
|
(add-hook 'lisp-mode-hook 'rainbow-delimiters-mode)
|
||||||
(add-hook 'scheme-mode-hook 'rainbow-delimiters-mode))
|
(add-hook 'scheme-mode-hook 'rainbow-delimiters-mode))
|
||||||
|
|
||||||
|
(setq lisp-indent-offset 5)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Perl
|
*** Perl
|
||||||
Cperl-mode is better than perl-mode. You can't change my mind.
|
Cperl-mode is better than perl-mode. You can't change my mind.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(defalias 'perl-mode 'cperl-mode)
|
(defalias 'perl-mode 'cperl-mode)
|
||||||
|
(setq cperl-indent-level 5)
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** C*
|
*** C*
|
||||||
|
@ -278,6 +278,11 @@
|
||||||
(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")
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** Raku
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
|
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Extra functions
|
** Extra functions
|
||||||
Here I put functions I won't bother to document because they're so
|
Here I put functions I won't bother to document because they're so
|
||||||
|
@ -408,13 +413,19 @@
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Ace jump mode
|
** Ace jump mode
|
||||||
|
So you can jump to characters fast af
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package "ace-jump-mode"
|
(use-package "ace-jump-mode"
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind("C-l" . 'ace-jump-mode))
|
:bind("C-l" . 'ace-jump-mode))
|
||||||
#+end_src
|
#+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
|
* Helm
|
||||||
|
|
||||||
fuck helm lol
|
fuck helm lol
|
||||||
|
@ -472,3 +483,4 @@
|
||||||
:init (telephone-line-mode 1))
|
:init (telephone-line-mode 1))
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue