hl-sexp completely disabled. Default font set to 'Fira Mono'

This commit is contained in:
Sameer Rahmani 2017-04-08 04:46:00 +04:30
parent 72cb4f942e
commit f41b20481c
5 changed files with 12 additions and 10 deletions

View File

@ -5,7 +5,6 @@
;; Dependencies ----------------------------------
(depends-on 'clojure-mode)
(depends-on 'cider)
(depends-on 'hl-sexp)
(depends-on 'paredit)
(depends-on 'flycheck)
(depends-on 'flycheck-clojure)

View File

@ -180,7 +180,6 @@
(interactive)
(require 'cider)
(require 'hl-sexp)
(require 'paredit)
@ -284,7 +283,6 @@
(add-hook 'cider-mode-hook #'eldoc-mode)
(add-hook 'clojure-mode-hook #'paredit-mode)
(add-hook 'cider-repl-mode-hook #'paredit-mode)
(add-hook 'clojure-mode-hook #'hl-sexp-mode)
(add-hook 'paredit-mode-hook 'setup-keys)
(add-hook 'clojure-mode-hook 'rainbow-delimiters-mode)

View File

@ -9,9 +9,11 @@
(depends-on 'projectile)
(depends-on 'indent-guide)
(depends-on 'yasnippet)
(depends-on 'hl-sexp)
(depends-on 'smart-mode-line)
;; (with-ability hl
;; (depends-on 'hl-sexp))
(with-ability dumb-jump
(depends-on 'dumb-jump))

View File

@ -98,10 +98,10 @@
:description "Rise up MAGIT. Git interface for FG42")
(global-set-key (kbd "C-x g") 'magit-status))
(ability hl ()
"Highligh the current block of code. This ability may slows you down."
(require 'hl-sexp)
(add-hook 'prog-mode-hook #'hl-sexp-mode))
;; (ability hl ()
;; "Highligh the current block of code. This ability may slows you down."
;; (require 'hl-sexp)
;; (add-hook 'prog-mode-hook #'hl-sexp-mode))
(ability code-completion ()
"Use company mode to provides a complete auto completion framwork."

View File

@ -30,6 +30,11 @@
(require 'cheatsheet)
(require 'extensions/editor/utils)
;; Font Configuration -----------------------------------
(add-to-list 'default-frame-alist '(font . "Fira Mono" ))
(set-face-attribute 'default t :font "Fira Mono" )
;; ------------------------------------------------------
(cheatsheet-add :group '--HELP--
:key "C-?"
:description "Show this cheatsheet")
@ -55,8 +60,6 @@
;; scratch should be scratch
(setq initial-scratch-message nil)
(ability spaceline ()
"A really cool mode line alternative which borrowed from awesome spacemacs"
(require 'spaceline-config)