Changeset 54e0279 in dotfiles
- Timestamp:
- Jan 25, 2020, 7:56:37 AM (5 years ago)
- Branches:
- master
- Children:
- 179eaa17
- Parents:
- c3016ec
- git-author:
- Mikhail Kirillov <w96k@…> (01/25/20 07:14:35)
- git-committer:
- Mikhail Kirillov <w96k@…> (01/25/20 07:56:37)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.emacs
rc3016ec r54e0279 83 83 84 84 ;; Enable flashing mode-line on errors 85 (doom-themes-visual-bell-config) 86 87 ;; or for treemacs users 88 (setq doom-themes-treemacs-theme "doom-colors") ; use the colorful treemacs theme 89 (doom-themes-treemacs-config) 90 91 ;; Corrects (and improves) org-mode's native fontification. 92 (doom-themes-org-config) 93 (load-theme 'doom-tomorrow-night t)) 94 95 ;; (use-package color-theme-sanityinc-tomorrow 96 ;; :demand 97 ;; :config (load-theme 'sanityinc-tomorrow-eighties t)) 85 (doom-themes-visual-bell-config)) 86 87 88 (use-package color-theme-sanityinc-tomorrow 89 :demand 90 :config (load-theme 'sanityinc-tomorrow-eighties t)) 98 91 99 92 (use-package simple-httpd) … … 170 163 (use-package magit 171 164 :bind ("C-x g" . magit-status)) 172 173 ;;; Magit forge (magit integration with git hostings)174 (use-package forge175 :after magit)176 165 177 166 ;;; Git flow … … 236 225 :config 237 226 (require 'helm-config) 227 (setq helm-buffers-fuzzy-matching t 228 helm-recentf-fuzzy-match t) 229 (setq helm-semantic-fuzzy-match t 230 helm-imenu-fuzzy-match t) 231 (setq helm-locate-fuzzy-match t) 232 (setq helm-apropos-fuzzy-match t) 233 (setq helm-lisp-fuzzy-completion t) 238 234 (define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) 239 235 (define-key helm-map (kbd "S-<tab>") 'helm-select-action) … … 575 571 :hook (after-init . doom-modeline-mode) 576 572 :config 577 (setq doom-modeline-height 22)578 573 (setq doom-modeline-bar-width 8) 579 574 (setq inhibit-compacting-font-caches t) 580 575 (setq find-file-visit-truename t) 581 576 (setq doom-modeline-project-detection 'project) 577 (setq doom-modeline-icon t) 578 (setq doom-modeline-buffer-modification-icon nil) 579 (setq doom-modeline-major-mode-icon nil) 580 (setq doom-modeline-buffer-state-icon nil) 581 (setq doom-modeline-minor-modes nil) 582 (setq doom-modeline-major-mode-color-icon nil) 583 (set-face-attribute 'mode-line nil :height 100) 584 (set-face-attribute 'mode-line-inactive nil :height 100) 582 585 (setq doom-modeline-height 1)) 583 586 … … 622 625 623 626 ;; (global-set-key [(control ?h)] 'delete-backward-char) 624 (custom-set-variables625 ;; custom-set-variables was added by Custom.626 ;; If you edit it by hand, you could mess it up, so be careful.627 ;; Your init file should contain only one such instance.628 ;; If there is more than one, they won't work right.629 '(company-idle-delay 0.1)630 '(company-minimum-prefix-length 1)631 '(company-require-match nil)632 '(company-tooltip-align-annotation t t)633 '(flycheck-python-flake8-executable "python3")634 '(flycheck-python-pycompile-executable "python3")635 '(flycheck-python-pylint-executable "python3")636 '(package-selected-packages (quote (ag))))637 (custom-set-faces638 ;; custom-set-faces was added by Custom.639 ;; If you edit it by hand, you could mess it up, so be careful.640 ;; Your init file should contain only one such instance.641 ;; If there is more than one, they won't work right.642 )
Note:
See TracChangeset
for help on using the changeset viewer.