-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-config.el
More file actions
28 lines (24 loc) · 1.02 KB
/
Copy pathuser-config.el
File metadata and controls
28 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;; -*- mode: emacs-lisp; lexical-binding: t -*-
;; ---------------------------------------
;; General Configuration changes
;; ---------------------------------------
;; ---------------------------------------
;; Line numbers
;; native line numbers taking up lots of space?
(setq-default display-line-numbers-width nil)
;; ---------------------------------------
;; ---------------------------------------
;; Searching
;; replace / search with helm-swoop in Evil normal state
(evil-global-set-key 'normal "/" 'helm-swoop)
;;
;; ---------------------------------------
;; ---------------------------------------
;; Helm Descbinds
;; Recent release of helm-descbinds package breaks which-key menu
;; Remove helm-discbinds-mode from helm mode hook to avoid activating
;; https://github.com/syl20bnr/spacemacs/issues/16276
(remove-hook 'helm-mode-hook 'helm-descbinds-mode)
;; ---------------------------------------
;; Add this to your dotspacemacs/user-config function in .spacemacs
(setq treesit-extra-load-path '("~/.emacs.d/tree-sitter/"))