aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-05-05 02:57:27 +0100
committerdx <aryadevchavali1@gmail.com>2020-05-05 02:59:56 +0100
commitcbe9926bc40a086b205c5eecb745433e070ff5d0 (patch)
tree33a3a706385776a53b4fb6da730c8468dadabf04
parentfcab09bcba082b636dab917d69872a7be567d0a5 (diff)
downloaddotfiles-cbe9926bc40a086b205c5eecb745433e070ff5d0.tar.gz
dotfiles-cbe9926bc40a086b205c5eecb745433e070ff5d0.tar.bz2
dotfiles-cbe9926bc40a086b205c5eecb745433e070ff5d0.zip
+yaml packages
-rw-r--r--Doom/.doom.d/org/packages.org12
1 files changed, 11 insertions, 1 deletions
diff --git a/Doom/.doom.d/org/packages.org b/Doom/.doom.d/org/packages.org
index f8d6b11..f663c70 100644
--- a/Doom/.doom.d/org/packages.org
+++ b/Doom/.doom.d/org/packages.org
@@ -33,7 +33,7 @@ Every now and then I like to use base16 themes, particularly when zen coding.
(package! base16-theme)
#+END_SRC
* Coding
-** counsel-etags
+** Tags
Should really be an inbuilt feature for Ivy, as it is so damn useful. 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. I have personally
@@ -57,3 +57,13 @@ Auto complete is essential to make the ultimate IDE experience™. Thus, company
#+BEGIN_SRC elisp
(package! company-arduino)
#+END_SRC
+** YAML
+YAML packages which I think would be cool to use:
+- yaml-mode is just necessary as you can't edit without coloring (in my opinion)
+- yaml-imenu is a cool package for large yaml files
+- flycheck-yamllint is a nice little package which
+#+BEGIN_SRC elisp
+(package! yaml-mode)
+(package! yaml-imenu)
+(package! flycheck-yamllint)
+#+END_SRC