]> code.delx.au - dotemacs/blob - lisp/my-completion.el
rebind M-{ and M-} to jump by blocks in markdown-mode, it has a weird definition...
[dotemacs] / lisp / my-completion.el
1 ;;; -*- lexical-binding: t -*-
2
3 (require 'counsel)
4 (require 'ivy)
5 (require 'swiper)
6 (ivy-mode 1)
7 (setq counsel-find-file-at-point t)
8 (setq counsel-find-file-ignore-regexp "\\(?:\\`[#.]\\)\\|\\(?:[#~]\\'\\)")
9 (setq ivy-wrap t)
10 (setq ivy-extra-directories nil)
11 (setq counsel-git-cmd "git ls-files --full-name --cached --others --exclude-standard --")
12 (setq counsel-git-grep-cmd-default "git --no-pager grep --full-name -n --no-color --untracked -i -e %S")