Added ack
This commit is contained in:
parent
871a52269a
commit
a82f981d84
1 changed files with 61 additions and 32 deletions
93
config.org
93
config.org
|
@ -3,7 +3,7 @@
|
||||||
* suragu's Emacs config
|
* suragu's Emacs config
|
||||||
|
|
||||||
This is my Emacs configuration, if you don't like it, that's ok
|
This is my Emacs configuration, if you don't like it, that's ok
|
||||||
because I made it thinking of myself. Hopefully, the code here is tidy
|
because I made it thinking of myself. the code here is tidy
|
||||||
so anyone could modify it without great pain.
|
so anyone could modify it without great pain.
|
||||||
|
|
||||||
** Installation
|
** Installation
|
||||||
|
@ -151,6 +151,7 @@ Functions I wrote because emacs lisp is cool and useful.
|
||||||
)))
|
)))
|
||||||
|
|
||||||
(defun sosa/make-website ()
|
(defun sosa/make-website ()
|
||||||
|
"Publish the .org files of suragu.net to the sshfs mountpoint"
|
||||||
(interactive)
|
(interactive)
|
||||||
(org-publish "suragu.net"))
|
(org-publish "suragu.net"))
|
||||||
|
|
||||||
|
@ -254,14 +255,22 @@ you try to copmile vterm for further information.
|
||||||
It should use your default shell by default.
|
It should use your default shell by default.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package "vterm"
|
(use-package "vterm"
|
||||||
|
:ensure t)
|
||||||
|
#+END_SRC
|
||||||
|
And to have multiple buffers
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package multi-vterm
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind("C-x C-t" . vterm))
|
:bind("C-x C-t" . multi-vterm))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Theme
|
** Theme
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(load-theme 'misterioso t)
|
(use-package "exotica-theme"
|
||||||
|
:ensure t
|
||||||
(set-cursor-color "cyan")
|
:init(load-theme 'exotica t)
|
||||||
|
)
|
||||||
|
(set-cursor-color "purple")
|
||||||
#+end_src
|
#+end_src
|
||||||
** ctrlf
|
** ctrlf
|
||||||
So, you know, C-s in emacs sucks, so this is a repleacement for that.
|
So, you know, C-s in emacs sucks, so this is a repleacement for that.
|
||||||
|
@ -275,20 +284,6 @@ So, you know, C-s in emacs sucks, so this is a repleacement for that.
|
||||||
** Company and Irony
|
** Company and Irony
|
||||||
Some shit for autocompletion and that kind of shit.
|
Some shit for autocompletion and that kind of shit.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package company
|
|
||||||
:defer 1
|
|
||||||
:ensure t
|
|
||||||
:config
|
|
||||||
(setq company-idle-delay 0)
|
|
||||||
(setq company-minimum-prefix-length 1)
|
|
||||||
(global-company-mode))
|
|
||||||
(with-eval-after-load 'company
|
|
||||||
(define-key company-active-map (kbd "M-n") nil)
|
|
||||||
(define-key company-active-map (kbd "M-p") nil)
|
|
||||||
(define-key company-active-map (kbd "C-n") #'company-select-next)
|
|
||||||
(define-key company-active-map (kbd "C-p") #'company-select-previous))
|
|
||||||
#+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
|
||||||
|
@ -346,7 +341,7 @@ Raku, the cornerstone of any well designed programming language.
|
||||||
(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 'qorg/no-lines)
|
(add-hook 'org-mode-hook 'sosa/no-lines)
|
||||||
;; Syntax highlighting in exports
|
;; Syntax highlighting in exports
|
||||||
(use-package htmlize
|
(use-package htmlize
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
@ -494,7 +489,7 @@ And same but jumping between frames
|
||||||
(interactive)
|
(interactive)
|
||||||
(er/expand-region 2))
|
(er/expand-region 2))
|
||||||
|
|
||||||
(global-set-key (kbd "C-c q") 'qorg/mark-words-between-quotes)
|
(global-set-key (kbd "C-c q") 'sosa/mark-words-between-quotes)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Beacon mode
|
** Beacon mode
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -506,8 +501,7 @@ And same but jumping between frames
|
||||||
Le language server
|
Le language server
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package "lsp-mode"
|
(use-package "lsp-mode"
|
||||||
:ensure t
|
:ensure t)
|
||||||
)
|
|
||||||
(use-package "lsp-ui"
|
(use-package "lsp-ui"
|
||||||
:ensure t
|
:ensure t
|
||||||
:init(add-hook 'lsp-mode-hook 'lsp-ui-mode))
|
:init(add-hook 'lsp-mode-hook 'lsp-ui-mode))
|
||||||
|
@ -519,8 +513,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 'qorg/no-lines)
|
(add-hook 'Man-mode-hook 'sosa/no-lines)
|
||||||
(add-hook 'speedbar-mode-hook 'qorg/no-lines)
|
(add-hook 'speedbar-mode-hook 'sosa/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,
|
||||||
|
@ -679,6 +673,16 @@ Projectile is a project manager which helps you with git and stuff.
|
||||||
:init(projectile-mode))
|
:init(projectile-mode))
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** Ack
|
||||||
|
Ack is a replacement for =grep(1)= written in Perl, it's fast and
|
||||||
|
stuff. And has support for Perl regular expressions. Because it is
|
||||||
|
written in Perl.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package "ack"
|
||||||
|
:ensure t
|
||||||
|
)
|
||||||
|
#+end_src
|
||||||
** Nyancat
|
** Nyancat
|
||||||
Yes.
|
Yes.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -689,34 +693,40 @@ Yes.
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
* Vertico
|
* Vertico
|
||||||
Better interactive selection minibuffer. Alternative to ido and helm.
|
Better interactive selection minibuffer. Alternative to ido and
|
||||||
|
helm. This also installs =marginalia-mode=. So you can have further
|
||||||
|
information of the commands, files and stuff in the minibuffer.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
(use-package marginalia
|
||||||
|
:ensure t)
|
||||||
|
|
||||||
(use-package vertico
|
(use-package vertico
|
||||||
|
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
(vertico-mode)
|
(vertico-mode)
|
||||||
|
(marginalia-mode)
|
||||||
|
|
||||||
;; Different scroll margin
|
;; Different scroll margin
|
||||||
;; (setq vertico-scroll-margin 0)
|
(setq vertico-scroll-margin 10)
|
||||||
|
|
||||||
;; Show more candidates
|
;; Show more candidates
|
||||||
;; (setq vertico-count 20)
|
(setq vertico-count 10)
|
||||||
|
|
||||||
;; Grow and shrink the Vertico minibuffer
|
;; Grow and shrink the Vertico minibuffer
|
||||||
;; (setq vertico-resize t)
|
(setq vertico-resize nil)
|
||||||
|
|
||||||
;; Optionally enable cycling for `vertico-next' and `vertico-previous'.
|
;; Optionally enable cycling for `vertico-next' and `vertico-previous'.
|
||||||
;; (setq vertico-cycle t)
|
(setq vertico-cycle nil))
|
||||||
)
|
|
||||||
|
|
||||||
;; Persist history over Emacs restarts. Vertico sorts by history position.
|
;; Persist history over Emacs restarts. Vertico sorts by history position.
|
||||||
(use-package savehist
|
(use-package savehist
|
||||||
:init
|
:init
|
||||||
(savehist-mode))
|
(savehist-mode))
|
||||||
|
|
||||||
;; A few more useful configurations...
|
;; A few more useful configurations
|
||||||
(use-package emacs
|
(use-package emacs
|
||||||
|
:ensure t
|
||||||
:init
|
:init
|
||||||
;; Add prompt indicator to `completing-read-multiple'.
|
;; Add prompt indicator to `completing-read-multiple'.
|
||||||
;; We display [CRM<separator>], e.g., [CRM,] if the separator is a comma.
|
;; We display [CRM<separator>], e.g., [CRM,] if the separator is a comma.
|
||||||
|
@ -741,6 +751,25 @@ Better interactive selection minibuffer. Alternative to ido and helm.
|
||||||
|
|
||||||
;; Enable recursive minibuffers
|
;; Enable recursive minibuffers
|
||||||
(setq enable-recursive-minibuffers t))
|
(setq enable-recursive-minibuffers t))
|
||||||
|
(advice-add #'vertico--format-candidate :around
|
||||||
|
(lambda (orig cand prefix suffix index _start)
|
||||||
|
(setq cand (funcall orig cand prefix suffix index _start))
|
||||||
|
(concat
|
||||||
|
(if (= vertico--index index)
|
||||||
|
(propertize "-> " 'face 'vertico-current)
|
||||||
|
" ")
|
||||||
|
cand)))
|
||||||
|
(defun vertico-resize--minibuffer ()
|
||||||
|
(add-hook 'window-size-change-functions
|
||||||
|
(lambda (win)
|
||||||
|
(let ((height (window-height win)))
|
||||||
|
(when (/= (1- height) vertico-count)
|
||||||
|
(setq-local vertico-count (1- height))
|
||||||
|
(vertico--exhibit))))
|
||||||
|
t t))
|
||||||
|
|
||||||
|
(advice-add #'vertico--setup :before #'vertico-resize--minibuffer)
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
* CRUX
|
* CRUX
|
||||||
|
|
Loading…
Add table
Reference in a new issue