mirror of https://github.com/Chizi123/.emacs.d.git

Joel Grunbaum
2021-01-27 af0806f06cc98353b09254da5c023e9b321f3997
config.org
@@ -124,7 +124,14 @@
  (diminish 'flyspell-mode)
#+END_SRC
** Language Tool
Language tool is an open source grammar checker.
#+BEGIN_SRC emacs-lisp
  (use-package langtool
    :ensure t
    :init
    (setq langtool-java-classpath "/usr/share/languagetool:/usr/share/java/languagetool/*"))
#+END_SRC
** Switch-window
Helps to change windows easily when many are open at once.
#+BEGIN_SRC emacs-lisp
@@ -607,7 +614,7 @@
#+BEGIN_SRC emacs-lisp
  (setq c-default-style '((java-mode . "java")
                         (awk-mode . "awk")
                         (other . "k&r")))
                         (other . "linux")))
#+END_SRC
** Coding system
@@ -618,7 +625,7 @@
  (set-language-environment "UTF-8")
  (prefer-coding-system 'utf-8)
  (setq-default indent-tabs-mode t
                tab-width 4
                tab-width 8
                c-basic-offset tab-width
                cperl-indent-level tab-width)
  (delete-selection-mode)
@@ -980,7 +987,23 @@
                                     company-dabbrev-code
                                     company-irony)))
#+END_SRC
**** Clang-format
Automatically format buffer on save.
#+BEGIN_SRC emacs-lisp
  (when (file-exists-p "/usr/share/clang/clang-format.el")
    (load "/usr/share/clang/clang-format.el")
    (setq clang-format-linux-style (concat "{BasedOnStyle: LLVM,"
                                           "IndentWidth: 8,"
                                           "UseTab: Always,"
                                           "BreakBeforeBraces: Linux,"
                                           "AllowShortIfStatementsOnASingleLine: false,"
                                           "IndentCaseLabels: false}"))
    (setq-default clang-format-style clang-format-linux-style)
    (defun clang-format-on-save ()
      (add-hook 'before-save-hook 'clang-format-buffer))
    (add-hook 'c-mode-hook 'clang-format-on-save)
    (add-hook 'c++-mode-hook 'clang-format-on-save))
#+END_SRC
*** emacs-lisp
**** COMMENT company
Add slime backend.