blah blah
This commit is contained in:
parent
d9ab240331
commit
499f05fd39
1 changed files with 11 additions and 3 deletions
14
config.org
14
config.org
|
@ -7,9 +7,7 @@
|
||||||
This is my Emacs configuration. Hope you like it.
|
This is my Emacs configuration. Hope you like it.
|
||||||
|
|
||||||
** Installation
|
** Installation
|
||||||
|
|
||||||
Just copy this repository to your .emacs.d. Nothing else is needed.
|
Just copy this repository to your .emacs.d. Nothing else is needed.
|
||||||
|
|
||||||
* Why?
|
* Why?
|
||||||
- I can
|
- I can
|
||||||
- I don't like doom emacs
|
- I don't like doom emacs
|
||||||
|
@ -114,6 +112,7 @@ Probably this overwrites another keybinding. But since I overwrited
|
||||||
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 "M-m") 'mark-whole-buffer)
|
(global-set-key (kbd "M-m") 'mark-whole-buffer)
|
||||||
|
(global-set-key (kbd "C-c m") 'man)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* No idea
|
* No idea
|
||||||
|
@ -134,6 +133,12 @@ it. I don't think i'd ever use the overwritten.
|
||||||
:ensure t
|
:ensure t
|
||||||
:defer 1)
|
:defer 1)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
* Functions
|
||||||
|
Too lazy for lambdas
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(defun no-lines()
|
||||||
|
(display-line-numbers-mode -1))
|
||||||
|
#+end_src
|
||||||
* Programs
|
* Programs
|
||||||
Emacs customization, Here is where most of the configuration is.
|
Emacs customization, Here is where most of the configuration is.
|
||||||
** Pseudopersonalization
|
** Pseudopersonalization
|
||||||
|
@ -327,6 +332,7 @@ Now for indent shit, so it matches the tabsize
|
||||||
(setq org-export-with-smart-quotes t)
|
(setq org-export-with-smart-quotes t)
|
||||||
(setq org-src-window-setup 'current-window)
|
(setq org-src-window-setup 'current-window)
|
||||||
(add-hook 'org-mode-hook 'org-indent-mode)
|
(add-hook 'org-mode-hook 'org-indent-mode)
|
||||||
|
(add-hook 'org-mode-hook 'no-lines)
|
||||||
;; Syntax highlighting in exports
|
;; Syntax highlighting in exports
|
||||||
(use-package htmlize
|
(use-package htmlize
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
@ -524,6 +530,8 @@ I am tired of =M-x auto-fill-mode= in some modes
|
||||||
(add-hook 'text-mode-hook 'auto-fill-mode)
|
(add-hook 'text-mode-hook 'auto-fill-mode)
|
||||||
(add-hook 'sgml-mode-hook 'auto-fill-mode)
|
(add-hook 'sgml-mode-hook 'auto-fill-mode)
|
||||||
(add-hook 'sgml-mode-hook 'zencoding-mode)
|
(add-hook 'sgml-mode-hook 'zencoding-mode)
|
||||||
|
(add-hook 'Man-mode-hook 'no-lines)
|
||||||
|
(add-hook 'speedbar-mode-hook 'no-lines)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Hungry delete
|
** Hungry delete
|
||||||
Having to delete multiple whitespaces is one of the things I hate,
|
Having to delete multiple whitespaces is one of the things I hate,
|
||||||
|
@ -565,7 +573,7 @@ It's like ace-whatever but for zapping characters.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package zzz-to-char
|
(use-package zzz-to-char
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind("M-z" . 'zzz-to-char))
|
:bind("M-z" . 'zzz-up-to-char))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Helpful
|
** Helpful
|
||||||
Better \*help\* buffer
|
Better \*help\* buffer
|
||||||
|
|
Loading…
Add table
Reference in a new issue