This commit is contained in:
Henrik Lissner 2015-10-12 04:31:55 -04:00
parent 80282c0665
commit a74136a55d
5 changed files with 6 additions and 4 deletions

View file

@ -5,7 +5,7 @@
:functions (flycheck-buffer) :functions (flycheck-buffer)
:commands (flycheck-mode flycheck-list-errors) :commands (flycheck-mode flycheck-list-errors)
:init :init
(setq flycheck-indication-mode 'right-fringe (setq flycheck-indication-mode nil
;; Removed checks on idle/change for snappiness ;; Removed checks on idle/change for snappiness
flycheck-check-syntax-automatically '(save mode-enabled idle-change) flycheck-check-syntax-automatically '(save mode-enabled idle-change)
flycheck-disabled-checkers '(emacs-lisp-checkdoc make)) flycheck-disabled-checkers '(emacs-lisp-checkdoc make))

View file

@ -26,6 +26,8 @@
;; switching. ;; switching.
cursor-in-non-selected-windows nil cursor-in-non-selected-windows nil
uniquify-buffer-name-style nil
visible-bell nil ; silence of the bells visible-bell nil ; silence of the bells
use-dialog-box nil ; avoid GUI use-dialog-box nil ; avoid GUI
redisplay-dont-pause t redisplay-dont-pause t
@ -258,7 +260,6 @@
process :when active) process :when active)
(global :when active) (global :when active)
(narf-line-column narf-buffer-position) (narf-line-column narf-buffer-position)
;; narf-hud
))) )))
(provide 'core-ui) (provide 'core-ui)

View file

@ -13,6 +13,7 @@
;; What to do on Emacs exit / workgroups-mode exit? ;; What to do on Emacs exit / workgroups-mode exit?
wg-emacs-exit-save-behavior 'save ; Options: 'save 'ask nil wg-emacs-exit-save-behavior 'save ; Options: 'save 'ask nil
wg-workgroups-mode-exit-save-behavior 'save wg-workgroups-mode-exit-save-behavior 'save
wg-log-level 0
wg-list-display-decor-divider " : " wg-list-display-decor-divider " : "
wg-list-display-decor-current-left "[" wg-list-display-decor-current-left "["

View file

@ -6,7 +6,7 @@
:init (add-hook! csharp-mode 'flycheck-mode)) :init (add-hook! csharp-mode 'flycheck-mode))
;; unity shaders ;; unity shaders
(use-package shaderlab-mode :mode "\\.shader$") (use-package shader-mode :mode "\\.shader$")
(use-package omnisharp (use-package omnisharp
:after csharp-mode :after csharp-mode