Replace dabbrev mode with hippie expand

This commit is contained in:
Sameer Rahmani 2024-04-08 11:45:27 +01:00
parent c8fee15422
commit b13faec67c
Signed by: lxsameer
GPG Key ID: 8741FACBF412FFA5
1 changed files with 2 additions and 1 deletions

View File

@ -204,7 +204,6 @@ shipped with Emacs."
:commands eglot :commands eglot
:autoload eglot-ensure) :autoload eglot-ensure)
(use! flycheck (use! flycheck
"Flycheck is a modern on-the-fly syntax checking extension for GNU Emacs." "Flycheck is a modern on-the-fly syntax checking extension for GNU Emacs."
:config (global-flycheck-mode)) :config (global-flycheck-mode))
@ -241,6 +240,8 @@ shipped with Emacs."
(setq tooltip-use-echo-area t) (setq tooltip-use-echo-area t)
(setq x-gtk-use-system-tooltips nil) (setq x-gtk-use-system-tooltips nil)
;; Switch from `dabbrev-expand' to `hippie-expand'
(global-set-key [remap dabbrev-expand] 'hippie-expand)
;; Global configurations ;; Global configurations
(tool-bar-mode -1) (tool-bar-mode -1)
(tooltip-mode nil) (tooltip-mode nil)