emacs: remove some useless code magit-define-global-key-bindings is t by default editorconfig will always be available assuming I'm running emacs from nix/home-manager
1 file changed, 3 insertions(+), 4 deletions(-)
changed files
M user/emacs/early-init.el → user/emacs/early-init.el
@@ -1,8 +1,9 @@ +(defvar package-quickstart t) (setq inhibit-startup-screen t initial-scratch-message "" initial-major-mode 'fundamental-mode - package-quickstart t - frame-inhibit-implied-resize t) + frame-inhibit-implied-resize t + byte-compile-warnings '(not free-vars unresolved noruntime lexical make-local cl-functions)) ;; Disable all the bars, unless on macOS, in which case, keep the menu bar. (unless (eq window-system 'ns)@@ -10,5 +11,3 @@ (menu-bar-mode -1)) (scroll-bar-mode -1) (tool-bar-mode -1) (set-fringe-mode '(4 . 4)) - -(defvar evil-want-keybinding nil)