Преглед изворни кода

Disable cursor blink, start last-sexp fix for evil

Josh Bicking пре 8 година
родитељ
комит
f5c15ed9d1
1 измењених фајлова са 12 додато и 1 уклоњено
  1. 12 1
      emacs

+ 12 - 1
emacs

@@ -7,7 +7,18 @@
 ;;;; Base
 
 ;; Disable beep & flash
- (setq ring-bell-function 'ignore)
+(setq ring-bell-function 'ignore)
+
+;; Disable blinking cursor
+(blink-cursor-mode 0)
+  
+;;(defun evil-eval-prev-exp ()
+  ;;(interactive)
+  ;;(evil-append 1)
+  ;;(call-interactively (global-key-binding "\C-x"))
+  ;;(call-interactively (global-key-binding "\C-e"))
+  ;;(evil-normal-state))
+
 
 ;; All yes or no prompts are y or n
 (defalias 'yes-or-no-p 'y-or-n-p)