Mercurial > dotfiles
view .elisp/settings/10.require.el @ 526:852565046ed0 default tip
zsh: fidget with screen/tmux message
This should speed things up very slightly by avoiding some `grep` action
in the common case of no detached screens/tmuxes.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 14 Nov 2022 11:02:35 -0500 |
parents | a6d9af3fdc50 |
children |
line wrap: on
line source
;; Better buffer switching and file loading (load first in case we need the ;; * Messages * buffer) (require 'ido) (setq ido-enable-flex-matching t) (ido-mode t) (smex-initialize) ;; VCS (require 'mercurial) (require 'magit) ;; Hygene (require 'whitespace) (require 'midnight) ;; other (require 'textmate) (textmate-mode) ;; override what makes a project root (setq *textmate-project-roots* '(".git" ".hg")) (require 'yaml-mode) (add-to-list 'auto-mode-alist '("\\.yml$" . yaml-mode)) (require 'js2-mode) (require 'markdown-mode)