76 lines
2.6 KiB
EmacsLisp
76 lines
2.6 KiB
EmacsLisp
;;; init-indent.el --- -*- lexical-binding: t -*-
|
|
;;
|
|
;; Filename: init-indent.el
|
|
;; Description: Initialize Indentation
|
|
;; Author: Mingde (Matthew) Zeng
|
|
;; Copyright (C) 2019 Mingde (Matthew) Zeng
|
|
;; Created: Fri Mar 15 10:29:56 2019 (-0400)
|
|
;; Version: 2.0.0
|
|
;; Last-Updated: Tue Dec 3 21:41:41 2019 (-0500)
|
|
;; By: User Account1
|
|
;; URL: https://github.com/MatthewZMD/.emacs.d
|
|
;; Keywords: M-EMACS .emacs.d highlight-indent-guides indentation
|
|
;; Compatibility: emacs-version >= 26.1
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;;; Commentary:
|
|
;;
|
|
;; This initializes highlight-indent-guides
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;; This program is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or (at
|
|
;; your option) any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful, but
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
;; General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;
|
|
;;; Code:
|
|
|
|
(eval-when-compile
|
|
(require 'init-const))
|
|
|
|
;; HighLightIndentPac
|
|
(use-package highlight-indent-guides
|
|
:if *sys/gui*
|
|
:diminish
|
|
:hook ((prog-mode web-mode nxml-mode) . highlight-indent-guides-mode)
|
|
:custom
|
|
(highlight-indent-guides-method 'character)
|
|
(highlight-indent-guides-responsive 'top)
|
|
(highlight-indent-guides-delay 0)
|
|
(highlight-indent-guides-auto-character-face-perc 7))
|
|
;; -HighLightIndentPac
|
|
|
|
;; IndentConfig
|
|
(setq-default indent-tabs-mode nil)
|
|
(setq-default indent-line-function 'insert-tab)
|
|
(setq-default tab-width 4)
|
|
(setq-default c-basic-offset 4)
|
|
(setq-default js-switch-indent-offset 4)
|
|
(c-set-offset 'comment-intro 0)
|
|
(c-set-offset 'innamespace 0)
|
|
(c-set-offset 'case-label '+)
|
|
(c-set-offset 'access-label 0)
|
|
(c-set-offset (quote cpp-macro) 0 nil)
|
|
(add-hook 'after-change-major-mode-hook
|
|
(lambda () (if (equal electric-indent-mode 't)
|
|
(when (derived-mode-p 'text-mode)
|
|
(electric-indent-mode -1))
|
|
(electric-indent-mode 1))))
|
|
;; -IndentConfig
|
|
|
|
(provide 'init-indent)
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;; init-indent.el ends here
|