Changeset 54e0279 in dotfiles


Ignore:
Timestamp:
Jan 25, 2020, 7:56:37 AM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
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)
Message:

Fix magithub

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emacs/.emacs

    rc3016ec r54e0279  
    8383
    8484  ;; 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))
    9891
    9992(use-package simple-httpd)
     
    170163(use-package magit
    171164  :bind ("C-x g" . magit-status))
    172 
    173 ;;; Magit forge (magit integration with git hostings)
    174 (use-package forge
    175   :after magit)
    176165
    177166;;; Git flow
     
    236225  :config
    237226  (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)
    238234  (define-key helm-map (kbd "<tab>")    'helm-execute-persistent-action)
    239235  (define-key helm-map (kbd "S-<tab>") 'helm-select-action)
     
    575571  :hook (after-init . doom-modeline-mode)
    576572  :config
    577   (setq doom-modeline-height 22)
    578573  (setq doom-modeline-bar-width 8)
    579574  (setq inhibit-compacting-font-caches t)
    580575  (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)
    582585  (setq doom-modeline-height 1))
    583586
     
    622625
    623626;; (global-set-key [(control ?h)] 'delete-backward-char)
    624 (custom-set-variables
    625  ;; 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-faces
    638  ;; 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.