diff options
Diffstat (limited to 'shoshimacs.el')
-rw-r--r-- | shoshimacs.el | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/shoshimacs.el b/shoshimacs.el index 76741d3..fec63b2 100644 --- a/shoshimacs.el +++ b/shoshimacs.el @@ -92,8 +92,10 @@ <f1> my-reload-config) ;;; Completion -(setq completion-styles '(flex basic partial-completion emacs22) - completion-cycle-threshold 3 +(setq completion-styles '(orderless basic) + completion-category-overrides '((file (styles basic partial-completion)))) + +(setq completion-cycle-threshold 3 tab-always-indent 'complete) (package-install 'consult) @@ -202,6 +204,8 @@ (package-install 'sly) +(package-install 'sly-quicklisp) + (package-install 'json-mode) (add-hook 'ruby-mode-hook #'flymake-mode) @@ -230,6 +234,7 @@ (package-install 'magit) ;; Applications +(package-install 'emms) (require 'emms-setup) (emms-all) (setq emms-player-list '(emms-player-mpv)) @@ -295,19 +300,20 @@ (package-install 'autothemer) +(package-install 'telephone-line) (setq telephone-line-lhs '((evil . (telephone-line-evil-tag-segment)) - (accent . (telephone-line-vc-segment - telephone-line-erc-modified-channels-segment - telephone-line-process-segment)) - (nil . ( - ;; telephone-line-minor-mode-segment - telephone-line-buffer-segment)))) + (accent . (telephone-line-vc-segment + telephone-line-erc-modified-channels-segment + telephone-line-process-segment)) + (nil . ( + ;; telephone-line-minor-mode-segment + telephone-line-buffer-segment)))) (setq telephone-line-rhs '((nil . (telephone-line-misc-info-segment - telephone-line-flymake-segment)) - (accent . (telephone-line-major-mode-segment)) - (evil . (telephone-line-airline-position-segment)))) + telephone-line-flymake-segment)) + (accent . (telephone-line-major-mode-segment)) + (evil . (telephone-line-airline-position-segment)))) (telephone-line-mode t) (set-face-background 'telephone-line-evil-normal "deep pink") |