Last active
August 29, 2015 14:02
-
-
Save d9k/b7eeef377ca02ab886ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq-default indent-tabs-mode nil) | |
(setq-default tab-width 4) | |
(setq indent-line-function 'insert-tab) | |
(require 'linum) | |
(global-set-key [M-delete] 'backward-kill-word) | |
(setq linum-format "%4d \u2502 ") | |
(global-linum-mode 1) | |
;;(require 'php-mode) | |
;;(require 'any-ini-mode) | |
(setq auto-mode-alist (cons '(".*\.cnd$" . any-ini-mode) auto-mode-alist)) | |
(menu-bar-mode -1) | |
(show-paren-mode 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment