From d7e30e55b29461c76b461ddd73088f48e482ed65 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Thu, 26 Jan 2017 17:39:32 +0100 Subject: emacs: fixed typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- emacs/init.html | 102 ++++++++++++++++++++++++++++---------------------------- emacs/init.org | 8 ++--- 2 files changed, 55 insertions(+), 55 deletions(-) (limited to 'emacs') diff --git a/emacs/init.html b/emacs/init.html index db009d5..80c6385 100644 --- a/emacs/init.html +++ b/emacs/init.html @@ -4,7 +4,7 @@ mssola's GNU Emacs configuration - + @@ -717,7 +717,7 @@ require it here on the very top.
-
(use-package diminish
+
(use-package diminish
   :ensure t)
 
@@ -735,7 +735,7 @@ Ayo silver!
-
(use-package ag
+
(use-package ag
   :ensure t
   :config
 
@@ -757,14 +757,14 @@ Then, for keeping up with my projects I use the Projectile + Helm combination.
 
 
-
(use-package projectile
+
(use-package projectile
   :ensure t
   :config
   (projectile-mode 1)
   (setq projectile-mode-line
     '(:eval (format " %s" (projectile-project-name)))))
 
-(use-package helm
+(use-package helm
   :ensure t
   :config
   (setq projectile-completion-system 'helm)
@@ -796,10 +796,10 @@ Then, for keeping up with my projects I use the Projectile + Helm combination.
   (define-key helm-map (kbd "C-j") 'helm-next-line)
   (define-key helm-map (kbd "C-k") 'helm-previous-line)
 
-  (use-package helm-ag
+  (use-package helm-ag
     :ensure t))
 
-(use-package helm-projectile
+(use-package helm-projectile
   :ensure t
   :config
   (helm-projectile-on))
@@ -886,10 +886,10 @@ extension. This works with lots of languages with proper glue code.
 
 
-
(use-package let-alist
+
(use-package let-alist
   :ensure t)
 
-(use-package flycheck
+(use-package flycheck
   :ensure t
   :diminish
   :config
@@ -912,7 +912,7 @@ with your editor, you have to increase/decrease the fonts. I use the
 
 
-
(use-package default-text-scale
+
(use-package default-text-scale
   :ensure t
   :config
   (global-set-key (kbd "C-+") 'default-text-scale-increase)
@@ -929,7 +929,7 @@ supports it).
 
 
-
(use-package rainbow-delimiters
+
(use-package rainbow-delimiters
   :ensure t)
 
@@ -940,7 +940,7 @@ I never use the mouse.
-
(use-package disable-mouse
+
(use-package disable-mouse
   :ensure t
   :diminish
   :config
@@ -956,7 +956,7 @@ commands for the current chord as a list.
 
 
-
(use-package which-key
+
(use-package which-key
   :ensure t)
 
@@ -968,7 +968,7 @@ this, we have wc-mode.
-
(use-package wc-mode
+
(use-package wc-mode
   :ensure t)
 
@@ -980,20 +980,20 @@ that often, but it's cool to have a distraction-free screen from time to time.
-
(use-package writeroom-mode
+
(use-package writeroom-mode
   :ensure t)
 

-Finally, we have expand-region. This is an extension that is based on a Vim -one, which expands the region of selection with a single key chord. Even if evil -covers most of my uses, it's convenient to have this tool anyways. +The expand-region package is an extension that is based on a Vim one, which +expands the region of selection with a single key chord. Even if evil covers +most of my uses, it's convenient to have this tool anyways.

-
(use-package expand-region
+
(use-package expand-region
   :ensure t
   :config
 
@@ -1022,13 +1022,13 @@ covers most of my uses, it's convenient to have this tool anyways.
 Last but not least, YASnippet. This package allows people to define shortcuts
 for writing some common blocks. Moreover, it comes with a set of builtin
 snippets already. Since I don't remember some of these snippets, I've mapped
-, a to yas-describe-tables, which shows the available
+, h to yas-describe-tables, which shows the available
 snippets in another buffer.
 

-
(use-package yasnippet
+
(use-package yasnippet
   :ensure t
   :diminish yas-minor-mode
   :init (yas-global-mode)
@@ -1166,7 +1166,7 @@ Evil extensions.
   (define-key evil-insert-state-map (kbd "C-s")
     (lambda () (interactive) (save-buffer) (evil-force-normal-state))))
 
-(use-package evil
+(use-package evil
   :ensure t
   :config
 
@@ -1185,7 +1185,7 @@ Evil extensions.
   (evil-set-initial-state 'describe-mode 'normal)
   (evil-set-initial-state 'Buffer-menu-mode 'normal)
 
-  (use-package evil-leader
+  (use-package evil-leader
     :ensure t
     :config
     (global-evil-leader-mode)
@@ -1202,17 +1202,17 @@ Evil extensions.
       "b" 'view-buffer
       "o" 'browse-url-at-point))
 
-  (use-package evil-surround
+  (use-package evil-surround
     :ensure t
     :config
     (global-evil-surround-mode 1))
 
-  (use-package evil-commentary
+  (use-package evil-commentary
     :ensure t
     :config
     (evil-commentary-mode t))
 
-  (use-package evil-args
+  (use-package evil-args
     :ensure t
     :config
     ; Configuration taken from the documentation of evil-args.
@@ -1227,7 +1227,7 @@ Evil extensions.
     (define-key evil-motion-state-map "L" 'evil-forward-arg)
     (define-key evil-motion-state-map "H" 'evil-backward-arg))
 
-  (use-package evil-numbers
+  (use-package evil-numbers
     :ensure t
     :config
     (define-key evil-normal-state-map (kbd "C-a") 'evil-numbers/inc-at-pt)
@@ -1247,7 +1247,7 @@ certainly useful for some common tasks (I guess that I still need some learning)
 
 
-
(use-package magit
+
(use-package magit
   :ensure t
   :config
 
@@ -1267,7 +1267,7 @@ certainly useful for some common tasks (I guess that I still need some learning)
   (with-eval-after-load 'evil-leader
     (evil-leader/set-key "s" 'magit-status)
 
-    (use-package evil-magit
+    (use-package evil-magit
       :ensure t
       :config
 
@@ -1615,7 +1615,7 @@ I want desktop notifications when receiving email.
 
 
-
(use-package mu4e-alert
+
(use-package mu4e-alert
   :ensure t
   :config
 
@@ -1631,7 +1631,7 @@ I want desktop notifications when receiving email.
 
 ; Evil mode in mu4e
 (with-eval-after-load 'evil
-  (use-package evil-mu4e
+  (use-package evil-mu4e
     :ensure t
     :config
 
@@ -1763,7 +1763,7 @@ blocks to be converted into HTML as well, so we can properly colorize it).
 
 
-
(use-package htmlize
+
(use-package htmlize
   :ensure t)
 
@@ -2033,18 +2033,18 @@ And now my Go configuration. This includes stuff like the usage of goimpor (flyspell-prog-mode) ; eldoc support - (use-package go-eldoc + (use-package go-eldoc :ensure t :config (require 'go-eldoc)) - (use-package go-add-tags + (use-package go-add-tags :ensure t :config (evil-leader/set-key "t" 'go-add-tags))) ;; Go -(use-package go-mode +(use-package go-mode :ensure t :pin melpa-stable :config @@ -2063,7 +2063,7 @@ usings tabs for indentation (C, C++ and Go).
-
(use-package smart-tabs-mode
+
(use-package smart-tabs-mode
   :ensure t
   :config
   (smart-tabs-add-language-support golang go-mode-hook
@@ -2080,7 +2080,7 @@ Inferior markup languages.
 
;; Markdown mode with preview mode in the browser.
-(use-package markdown-mode
+(use-package markdown-mode
   :ensure t
   :config
 
@@ -2090,14 +2090,14 @@ Inferior markup languages.
 
   ; Preview mode does its things through websockets, so it's a requirement.
   ; After that, we can safely require it.
-  (use-package websocket
+  (use-package websocket
     :ensure t
     :config
-    (use-package markdown-preview-mode
+    (use-package markdown-preview-mode
       :ensure t)))
 
 ; YAML
-(use-package yaml-mode
+(use-package yaml-mode
   :ensure t
   :config
 
@@ -2111,20 +2111,20 @@ Web-related stuff.
 
 
-
(use-package slim-mode
+
(use-package slim-mode
   :ensure t)
 
-(use-package scss-mode
+(use-package scss-mode
   :ensure t
   :config
 
   (setq scss-compile-at-save nil)
   (add-hook 'yaml-mode-hook 'warnings-mode-hook))
 
-(use-package php-mode
+(use-package php-mode
   :ensure t)
 
-(use-package web-mode
+(use-package web-mode
   :ensure t
   :config
 
@@ -2146,7 +2146,7 @@ CMake for y'all.
 
 
-
(use-package cmake-mode
+
(use-package cmake-mode
   :ensure t
   :config
 
@@ -2156,7 +2156,7 @@ CMake for y'all.
          '(("\\.cmake\\'" . cmake-mode))
          auto-mode-alist))
 
-  (use-package cmake-font-lock
+  (use-package cmake-font-lock
     :ensure t
     :config
 
@@ -2172,19 +2172,19 @@ now because it's buggy, but I still have hope.
 
 
-
(use-package dockerfile-mode
+
(use-package dockerfile-mode
   :ensure t
   :config
 
   (add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode)))
 
-(use-package terraform-mode
+(use-package terraform-mode
   :ensure t
   :config
 
   (terraform-format-on-save-mode))
 
-(use-package hcl-mode
+(use-package hcl-mode
   :ensure t)
 
 ;(use-package salt-mode
@@ -2222,7 +2222,7 @@ too many things into my leader and these shortcuts look sensible to me).
 
 
-
(use-package crux
+
(use-package crux
   :ensure t
   :bind (("C-c d" . crux-delete-file-and-buffer)
          ("C-c r" . crux-rename-file-and-buffer)
@@ -2285,7 +2285,7 @@ along with this program.  If not, see <
 
diff --git a/emacs/init.org b/emacs/init.org index 855e610..b11c828 100644 --- a/emacs/init.org +++ b/emacs/init.org @@ -609,9 +609,9 @@ that often, but it's cool to have a distraction-free screen from time to time. :ensure t) #+END_SRC -Finally, we have =expand-region=. This is an extension that is based on a Vim -one, which expands the region of selection with a single key chord. Even if evil -covers most of my uses, it's convenient to have this tool anyways. +The =expand-region= package is an extension that is based on a Vim one, which +expands the region of selection with a single key chord. Even if evil covers +most of my uses, it's convenient to have this tool anyways. #+BEGIN_SRC elisp (use-package expand-region @@ -641,7 +641,7 @@ covers most of my uses, it's convenient to have this tool anyways. Last but not least, =YASnippet=. This package allows people to define shortcuts for writing some common blocks. Moreover, it comes with a set of builtin snippets already. Since I don't remember some of these snippets, I've mapped -@@html:, a@@ to =yas-describe-tables=, which shows the available +@@html:, h@@ to =yas-describe-tables=, which shows the available snippets in another buffer. #+BEGIN_SRC elisp -- cgit v1.2.3