Fixed shit and don't need that crap called linum again.
This commit is contained in:
parent
9dc04dae6d
commit
efdef03aca
1 changed files with 20 additions and 79 deletions
91
config.org
91
config.org
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
#+AUTHOR: qorg11
|
#+AUTHOR: qorg11
|
||||||
#+TITLE: emacs config
|
#+TITLE: emacs config
|
||||||
|
|
||||||
|
@ -72,12 +71,16 @@
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
||||||
(use-package markdown-mode
|
(use-package markdown-mode
|
||||||
|
:defer 1
|
||||||
:ensure t)
|
:ensure t)
|
||||||
(use-package web-mode
|
(use-package web-mode
|
||||||
|
:defer 1
|
||||||
:ensure t)
|
:ensure t)
|
||||||
(use-package magit
|
(use-package magit
|
||||||
|
:defer 1
|
||||||
:ensure t)
|
:ensure t)
|
||||||
(use-package all-the-icons
|
(use-package all-the-icons
|
||||||
|
:defer 1
|
||||||
:ensure t)
|
:ensure t)
|
||||||
(use-package which-key
|
(use-package which-key
|
||||||
:ensure t
|
:ensure t
|
||||||
|
@ -113,6 +116,7 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(global-set-key (kbd "M-m") 'mark-whole-buffer)
|
(global-set-key (kbd "M-m") 'mark-whole-buffer)
|
||||||
(use-package sudo-edit
|
(use-package sudo-edit
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:defer 1
|
||||||
:init
|
:init
|
||||||
(global-set-key (kbd "C-x C-r") 'sudo-edit-find-file))
|
(global-set-key (kbd "C-x C-r") 'sudo-edit-find-file))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
@ -137,6 +141,7 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(add-hook 'after-make-frame-functions 'contextual-menubar)
|
(add-hook 'after-make-frame-functions 'contextual-menubar)
|
||||||
(use-package zencoding-mode
|
(use-package zencoding-mode
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:defer 1
|
||||||
:init
|
:init
|
||||||
(add-hook 'sgml-mode-hook 'zencoding-mode))
|
(add-hook 'sgml-mode-hook 'zencoding-mode))
|
||||||
(setq-default dired-details-hidden-string "---- ")
|
(setq-default dired-details-hidden-string "---- ")
|
||||||
|
@ -154,10 +159,11 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
(set-frame-font "IBM Plex Mono 14" nil t)
|
(set-frame-font "Terminus 18" nil t)
|
||||||
(load-file "~/.emacs.d/markup.el")
|
(load-file "~/.emacs.d/markup.el")
|
||||||
(use-package smex
|
(use-package smex
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:defer 1
|
||||||
:init
|
:init
|
||||||
(global-set-key (kbd "M-x") 'smex))
|
(global-set-key (kbd "M-x") 'smex))
|
||||||
|
|
||||||
|
@ -237,24 +243,15 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Theme
|
** Theme
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package cyberpunk-theme
|
(use-package afternoon-theme
|
||||||
:ensure t
|
:ensure t
|
||||||
:init (load-theme 'cyberpunk t))
|
:init (load-theme 'afternoon t))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Relative lines
|
** Relative lines
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package linum-relative
|
(global-display-line-numbers-mode 1)
|
||||||
:ensure t
|
(setq display-line-numbers-type 'relative)
|
||||||
:init
|
|
||||||
(setq-default display-line-numbers-type 'relative
|
|
||||||
display-line-numbers-current-relative t
|
|
||||||
display-line-numbers-width 1
|
|
||||||
display-line-numbers-widen t)
|
|
||||||
|
|
||||||
(add-hook 'text-mode-hook #'display-line-numbers-mode)
|
|
||||||
(add-hook 'prog-mode-hook #'display-line-numbers-mode)
|
|
||||||
(column-number-mode 1))
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Flycheck
|
** Flycheck
|
||||||
Flycheck is a syntax validator or somehting like that
|
Flycheck is a syntax validator or somehting like that
|
||||||
|
@ -287,6 +284,7 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package swiper
|
(use-package swiper
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:defer 1
|
||||||
:init
|
:init
|
||||||
(global-set-key "\C-s" 'swiper))
|
(global-set-key "\C-s" 'swiper))
|
||||||
|
|
||||||
|
@ -321,16 +319,6 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(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
|
||||||
** Yasnippet
|
|
||||||
Sometimes i'm just to lazy to write.
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package yasnippet
|
|
||||||
:ensure t
|
|
||||||
:init
|
|
||||||
(yas-global-mode 1))
|
|
||||||
(use-package yasnippet-snippets
|
|
||||||
:ensure t)
|
|
||||||
#+END_SRC
|
|
||||||
** Idk what to name this
|
** Idk what to name this
|
||||||
Here I put things you can do in M-x or something idk
|
Here I put things you can do in M-x or something idk
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -404,36 +392,6 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
(backward-word)
|
(backward-word)
|
||||||
(kill-word 1))
|
(kill-word 1))
|
||||||
(global-set-key (kbd "M-C-k") 'kill-inner-word)
|
(global-set-key (kbd "M-C-k") 'kill-inner-word)
|
||||||
#+END_SRC
|
|
||||||
** Weechat
|
|
||||||
erc sucks, irc sucks, weechat does not. (see [[https://github.com/bqv/weechat.el/tree/rx-range][this]])
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(setq directory "~/.emacs.d/elpa/weechat-20190520.1551/Makefile")
|
|
||||||
|
|
||||||
(if (file-exists-p directory)
|
|
||||||
(add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/weechat/weechat-20190520.1551")(require 'weechat)))
|
|
||||||
#+END_SRC
|
|
||||||
** Tree
|
|
||||||
Emacs sidebar. soykafy but it works
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package treemacs
|
|
||||||
:ensure t
|
|
||||||
:init
|
|
||||||
(global-set-key [f8] 'treemacs))
|
|
||||||
#+END_SRC
|
|
||||||
** C-2 to matching parentheses
|
|
||||||
This make the C-2 show the matching parenthesis. like % in Vi.
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(global-set-key (kbd "C-2") 'match-paren)
|
|
||||||
|
|
||||||
(defun match-paren (arg)
|
|
||||||
"Go to the matching paren if on a paren; otherwise insert %."
|
|
||||||
(interactive "p")
|
|
||||||
(cond ((looking-at "\\s(") (forward-list 1) (backward-char 1))
|
|
||||||
((looking-at "\\s)") (forward-char 1) (backward-list 1))
|
|
||||||
(t (self-insert-command (or arg 1)))))
|
|
||||||
|
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Hunspell
|
** Hunspell
|
||||||
For some reason, there is no ispell spanish in void linux. so i had
|
For some reason, there is no ispell spanish in void linux. so i had
|
||||||
|
@ -463,16 +421,6 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
|
|
||||||
(add-hook 'dired-mode-hook #'my-dired-mode-hook))
|
(add-hook 'dired-mode-hook #'my-dired-mode-hook))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Tabs
|
|
||||||
I use tabs because they're not, uh, tree styled tabs for emacs...
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package centaur-tabs
|
|
||||||
:ensure t
|
|
||||||
:init
|
|
||||||
(centaur-tabs-mode t)
|
|
||||||
(global-set-key (kbd "C-x C-n") 'centaur-tabs-forward)
|
|
||||||
(global-set-key (kbd "C-x C-p") 'centaur-tabs-backward))
|
|
||||||
#+END_SRC
|
|
||||||
** Highlight identation
|
** Highlight identation
|
||||||
yeah i need it lol
|
yeah i need it lol
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -493,15 +441,6 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Evil
|
|
||||||
Hyper this is for you :p
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(if i-just-use-emacs-to-be-cool
|
|
||||||
(use-package evil
|
|
||||||
:ensure t
|
|
||||||
:init (evil-mode)))
|
|
||||||
#+END_SRC
|
|
||||||
|
|
||||||
* ido
|
* ido
|
||||||
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here
|
Ido is a replacement for keybindings such as C-x C-f and C-x b. Here
|
||||||
I rebinded C-x C-b to ido-switch-buffer because I always press C-x
|
I rebinded C-x C-b to ido-switch-buffer because I always press C-x
|
||||||
|
@ -544,7 +483,8 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
Line, lol
|
Line, lol
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package doom-modeline
|
(use-package doom-modeline
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:defer 1
|
||||||
:config
|
:config
|
||||||
(doom-modeline-mode))
|
(doom-modeline-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
@ -553,3 +493,4 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
|
|
||||||
[[./screenshot.png]]
|
[[./screenshot.png]]
|
||||||
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue