DOOM: Switch to VMOCE stack for completion

This commit is contained in:
2021-10-21 09:54:47 -07:00
parent 82679ea1e6
commit 90f745edbf
2 changed files with 10 additions and 13 deletions

View File

@@ -56,7 +56,7 @@
;; Spacemacs-like SPC SPC -> M-x behavior
(map! :leader
:desc "M-x"
"SPC" #'counsel-M-x)
"SPC" #'execute-extended-command)
(defun first-executable (candidates)
(seq-find #'executable-find candidates))
@@ -103,8 +103,9 @@
(defun display-ansi-colors ()
(interactive)
(format-decode-buffer 'ansi-colors))
(add-hook 'find-file-hooks 'tty-format-guess)
(add-hook 'find-file-hook 'tty-format-guess)
(add-to-list 'auto-mode-alist '("\\.log\\'" . display-ansi-colors))
(add-to-list 'auto-mode-alist '("\\.log\\.out\\'" . display-ansi-colors))
;; Here are some additional functions/macros that could help you configure Doom: