summaryrefslogtreecommitdiff
path: root/init/km-editor.el
diff options
context:
space:
mode:
Diffstat (limited to 'init/km-editor.el')
-rw-r--r--init/km-editor.el32
1 files changed, 0 insertions, 32 deletions
diff --git a/init/km-editor.el b/init/km-editor.el
deleted file mode 100644
index 596adf0..0000000
--- a/init/km-editor.el
+++ /dev/null
@@ -1,32 +0,0 @@
-;; check km-ui.el if don't find something in here
-
-(setq-default fill-column 72)
-(add-hook 'text-mode-hook 'turn-on-auto-fill)
-
-;; ess
-;; (require 'ess-site)
-(add-hook 'ess-mode-hook (lambda ()
- (setq ess-indent-level 4)))
-
-;; shell scripts
-(add-hook 'sh-mode-hook (lambda ()
- (setq sh-basic-offset 4)))
-
-(global-set-key (kbd "C-x \\") 'align-regexp)
-
-;; make whitespace-mode use just basic coloring
-;; http://ergoemacs.org/emacs/whitespace-mode.html
-(setq whitespace-style (quote
- (spaces tabs newline space-mark
- tab-mark newline-mark)))
-
-(delete-selection-mode t) ;; write over selected text
-(transient-mark-mode t)
-;; share clipboard with system
-(setq x-select-enable-clipboard t)
-
-(blink-cursor-mode -1)
-
-(put 'narrow-to-region 'disabled nil)
-
-(global-set-key (kbd "C-c i") 'indent-relative)