(Emacs)~fix some stuff wrong with my config
Byte compilation provides a ton of syntactical and contextual warnings, so I fixed up as many as I could reasonably do.
This commit is contained in:
@@ -489,7 +489,10 @@ to as a fully fledged completion framework.
|
|||||||
(kbd "M-k") #'ido-prev-match
|
(kbd "M-k") #'ido-prev-match
|
||||||
(kbd "C-x o") #'evil-window-up)
|
(kbd "C-x o") #'evil-window-up)
|
||||||
:init
|
:init
|
||||||
(setq ido-separator "\n")
|
(setq ido-decorations
|
||||||
|
(list "{" "}" " \n" " ..." "[" "]" " [No match]" " [Matched]"
|
||||||
|
" [Not readable]" " [Too big]" " [Confirm]")
|
||||||
|
completion-styles '(flex partial-completion intials emacs22))
|
||||||
(setq-default ido-enable-flex-matching t
|
(setq-default ido-enable-flex-matching t
|
||||||
ido-enable-dot-prefix t
|
ido-enable-dot-prefix t
|
||||||
ido-enable-regexp nil)
|
ido-enable-regexp nil)
|
||||||
@@ -906,7 +909,7 @@ the projectile command map for quick access.
|
|||||||
:init
|
:init
|
||||||
(setq projectile-tags-command "ctags -Re -f \"%s\" %s \"%s\"")
|
(setq projectile-tags-command "ctags -Re -f \"%s\" %s \"%s\"")
|
||||||
:config
|
:config
|
||||||
(projectile-global-mode))
|
(projectile-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Counsel projectile
|
*** Counsel projectile
|
||||||
Counsel projectile provides the ivy interface to projectile commands, which is really useful.
|
Counsel projectile provides the ivy interface to projectile commands, which is really useful.
|
||||||
@@ -1574,7 +1577,7 @@ However, if necessary later, define a function that may activate tabs locally.
|
|||||||
*** Colourising compilation
|
*** Colourising compilation
|
||||||
Colourising the compilation buffer so ansi color codes get computed.
|
Colourising the compilation buffer so ansi color codes get computed.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package compilation
|
(use-package compile
|
||||||
:defer t
|
:defer t
|
||||||
:straight nil
|
:straight nil
|
||||||
:config
|
:config
|
||||||
@@ -1748,9 +1751,9 @@ look is nice to have.
|
|||||||
*** Org pretty tables
|
*** Org pretty tables
|
||||||
Make the default ASCII tables of org mode pretty with
|
Make the default ASCII tables of org mode pretty with
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package org-pretty-table-mode
|
(use-package org-pretty-table
|
||||||
:straight (org-pretty-table-mode :type git :host github :repo "Fuco1/org-pretty-table")
|
:straight (org-pretty-table-mode :type git :host github :repo "Fuco1/org-pretty-table")
|
||||||
:hook org-mode-hook)
|
:hook (org-mode-hook . org-pretty-table-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Org pretty tags
|
*** Org pretty tags
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|||||||
Reference in New Issue
Block a user