|
@@ -107,7 +107,6 @@
|
|
(straight-use-package
|
|
(straight-use-package
|
|
'(symon :type git :host github
|
|
'(symon :type git :host github
|
|
:repo "zk-phi/symon"))
|
|
:repo "zk-phi/symon"))
|
|
-(symon-mode 1)
|
|
|
|
|
|
|
|
(straight-use-package
|
|
(straight-use-package
|
|
'(telephone-line :type git :host github
|
|
'(telephone-line :type git :host github
|
|
@@ -122,6 +121,12 @@
|
|
(setq highlight-indent-guides-method 'character)
|
|
(setq highlight-indent-guides-method 'character)
|
|
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
|
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
|
|
|
|
|
|
|
+;; Org mode
|
|
|
|
+;; Get src block tabs to work how I expect
|
|
|
|
+(setq org-src-tab-acts-natively t)
|
|
|
|
+(setq org-src-preserve-indentation nil
|
|
|
|
+ org-edit-src-content-indentation 0)
|
|
|
|
+
|
|
(require 'yasnippet)
|
|
(require 'yasnippet)
|
|
|
|
|
|
;; Configure focus
|
|
;; Configure focus
|
|
@@ -228,7 +233,8 @@
|
|
(global-set-key (kbd "C-c d") 'slime-describe-symbol)
|
|
(global-set-key (kbd "C-c d") 'slime-describe-symbol)
|
|
(global-set-key (kbd "C-c M-r") 'slime-restart-inferior-lisp)
|
|
(global-set-key (kbd "C-c M-r") 'slime-restart-inferior-lisp)
|
|
(global-set-key (kbd "C-c D") 'dimmer-mode)
|
|
(global-set-key (kbd "C-c D") 'dimmer-mode)
|
|
-(global-set-key (kbd "C-c s") 'sublimity-mode)
|
|
|
|
|
|
+(global-set-key (kbd "C-c S") 'sublimity-mode)
|
|
|
|
+(global-set-key (kbd "C-c s") 'flyspell-correct-word-before-point)
|
|
(global-set-key (kbd "C-c F") 'focus-mode)
|
|
(global-set-key (kbd "C-c F") 'focus-mode)
|
|
(global-set-key (kbd "C-c r") 'reload-dot-emacs)
|
|
(global-set-key (kbd "C-c r") 'reload-dot-emacs)
|
|
(global-set-key (kbd "C-c l") 'display-line-numbers-mode)
|
|
(global-set-key (kbd "C-c l") 'display-line-numbers-mode)
|
|
@@ -319,7 +325,8 @@
|
|
;; Graphic Display
|
|
;; Graphic Display
|
|
(if (display-graphic-p)
|
|
(if (display-graphic-p)
|
|
(progn
|
|
(progn
|
|
- (load-theme 'solarized-light t)))))
|
|
|
|
|
|
+ (symon-mode 1)
|
|
|
|
+ (load-theme 'solarized-dark t)))))
|
|
|
|
|
|
;; Load for GUI Linux
|
|
;; Load for GUI Linux
|
|
(if (eq system-type 'gnu/linux)
|
|
(if (eq system-type 'gnu/linux)
|