Add indent configuration for perl
This commit is contained in:
parent
c856e41b47
commit
50e9e24012
1 changed files with 6 additions and 1 deletions
|
@ -12,6 +12,8 @@
|
||||||
;; Set frame title
|
;; Set frame title
|
||||||
(setq frame-title-format "[%m] %f")
|
(setq frame-title-format "[%m] %f")
|
||||||
|
|
||||||
|
(setq-default indent-tabs-mode nil)
|
||||||
|
|
||||||
;; Default frame size
|
;; Default frame size
|
||||||
(setq initial-frame-alist
|
(setq initial-frame-alist
|
||||||
'(
|
'(
|
||||||
|
@ -58,7 +60,10 @@
|
||||||
(ansi-term shell-pop-term-shell)))))
|
(ansi-term shell-pop-term-shell)))))
|
||||||
'(shell-pop-window-position "top")
|
'(shell-pop-window-position "top")
|
||||||
'(shell-pop-window-size 20)
|
'(shell-pop-window-size 20)
|
||||||
'(tool-bar-mode nil))
|
'(tool-bar-mode nil)
|
||||||
|
'(cperl-indent-level 2)
|
||||||
|
'(cperl-close-paren-offset -2)
|
||||||
|
'(cperl-indent-parens-as-block t))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
|
Loading…
Reference in a new issue