Clean up
This commit is contained in:
parent
80282c0665
commit
a74136a55d
5 changed files with 6 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
||||||
:init
|
:init
|
||||||
;; Speed up show-paren outside of normal mode (where my motions are minimal)
|
;; Speed up show-paren outside of normal mode (where my motions are minimal)
|
||||||
(add-hook! evil-normal-state-entry (setq show-paren-delay 0.075))
|
(add-hook! evil-normal-state-entry (setq show-paren-delay 0.075))
|
||||||
(add-hook! evil-normal-state-exit (setq show-paren-delay 0))
|
(add-hook! evil-normal-state-exit (setq show-paren-delay 0))
|
||||||
;; Disable highlights on insert-mode
|
;; Disable highlights on insert-mode
|
||||||
(add-hook! evil-insert-state-entry 'evil-ex-nohighlight)
|
(add-hook! evil-insert-state-entry 'evil-ex-nohighlight)
|
||||||
;; Prevents "matches )" messages in minibuffer
|
;; Prevents "matches )" messages in minibuffer
|
||||||
|
|
|
@ -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))
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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 "["
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue