~auto-fill -> truncate lines

This commit is contained in:
dx
2020-06-06 19:38:16 +01:00
parent ebd73fc641
commit 7fec08acd6

View File

@@ -15,15 +15,13 @@ Don't byte compile this, not a good idea.
#+END_SRC #+END_SRC
* General * General
** wttrin ** wttrin
Weather analysis, useful for when I don't have my phone near me or I need to Weather analysis, useful for when I don't have my phone near me or I need to show just *how* much Emacs can do to someone.
show just *how* much Emacs can do to someone.
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(package! wttrin) (package! wttrin)
#+END_SRC #+END_SRC
** powerthesaurus ** powerthesaurus
Thesaurus for Emacs, amazingly useful. I do know that doom has it's own Thesaurus for Emacs, amazingly useful.
dictionary and thesaurus module, but I wish to use my own cos I have very I do know that doom has it's own dictionary and thesaurus module, but I wish to use my own cos I have very specific needs
specific needs
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(package! powerthesaurus) (package! powerthesaurus)
#+END_SRC #+END_SRC
@@ -44,21 +42,17 @@ Fragtog allows for latex segments to be instantly compiled and only when you hov
#+END_SRC #+END_SRC
* Coding * Coding
** Tags ** Tags
Should really be an inbuilt feature for Ivy, as it is so damn useful. Better Should really be an inbuilt feature for Ivy, as it is so damn useful.
than the Helm or inbuilt "TAGS" searching options as it provides ways to quickly Better than the Helm or inbuilt "TAGS" searching options as it provides ways to quickly filter data from the tag set which makes it incredibly fast.
filter data from the tag set which makes it incredibly fast. I have personally I use it in some of my personal functions such as the global testing function I have for C# using both tags and OmniSharp.
used it in some of my personal functions such as the global testing function I
have for C# using both tags and OmniSharp.
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(package! counsel-etags) (package! counsel-etags)
#+END_SRC #+END_SRC
** Arduino ** Arduino
I sometimes dabble in Arduino coding, and absolutely adore Emacs, so who says I I sometimes dabble in Arduino coding, and absolutely adore Emacs, so who says I can't make Emacs an Arduino IDE?
can't make Emacs an Arduino IDE?
*** arduino-mode *** arduino-mode
Absolutely necessary for Arduino development: syntax highlighting. I soon plan Absolutely necessary for Arduino development: syntax highlighting.
to make my own Arduino mode on the back of cc-mode, but who knows when that will I soon plan to make my own Arduino mode on the back of cc-mode, but who knows when that will happen?
happen?
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(package! arduino-mode) (package! arduino-mode)
#+END_SRC #+END_SRC