aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-06-20 00:31:35 +0100
committerdx <aryadevchavali1@gmail.com>2020-06-20 00:32:08 +0100
commitb4c756168da20d93de6949e5765c87073d8296b1 (patch)
treea1716f94fd17291a73012a56a547c4e6ea270ba3
parentb4713cb8d1eae190bd308c5dc68e0bf58a9e6e59 (diff)
downloaddotfiles-b4c756168da20d93de6949e5765c87073d8296b1.tar.gz
dotfiles-b4c756168da20d93de6949e5765c87073d8296b1.tar.bz2
dotfiles-b4c756168da20d93de6949e5765c87073d8296b1.zip
~ido -> ivy and disable calendar
-rw-r--r--Doom/.doom.d/init.el10
-rw-r--r--Doom/.doom.d/org/config.org13
2 files changed, 6 insertions, 17 deletions
diff --git a/Doom/.doom.d/init.el b/Doom/.doom.d/init.el
index dd2e8e0..5588457 100644
--- a/Doom/.doom.d/init.el
+++ b/Doom/.doom.d/init.el
@@ -21,11 +21,11 @@
:completion
(company +childframe) ; the ultimate code completion backend
- ;;(ivy
- ;; +fuzzy
- ;; +icons) ; a search engine for love and life
+ (ivy
+ +fuzzy
+ +icons) ; a search engine for love and life
;;helm ; the *other* search engine for love and life
- ido ; the other *other* search engine...
+ ;;ido ; the other *other* search engine...
:ui
;;deft ; notational velocity for Emacs
@@ -171,7 +171,7 @@
;; toward a specific purpose. They may have additional dependencies and
;; should be loaded late.
:app
- calendar
+ ;;calendar
;;irc ; how neckbeards socialize
(rss) ; emacs as an RSS reader
;;twitter ; twitter client https://twitter.com/vnought
diff --git a/Doom/.doom.d/org/config.org b/Doom/.doom.d/org/config.org
index bb815a9..53cdb7f 100644
--- a/Doom/.doom.d/org/config.org
+++ b/Doom/.doom.d/org/config.org
@@ -222,17 +222,6 @@ Add keybind to recompile (inside the buffer)
'company-mode-hook
#'(lambda () (setq company-frontends '(company-preview-frontend company-pseudo-tooltip-frontend))))
#+END_SRC
-** Counsel and Ido
-#+BEGIN_SRC elisp
-(map!
- :map ivy-minibuffer-map
- "C-j" #'ivy-next-line-or-history
- "C-k" #'ivy-previous-line-or-history
- :map (ido-common-completion-map ido-file-dir-completion-map)
- "C-j" #'ido-next-match
- "C-k" #'ido-prev-match
- "TAB" #'ido-complete)
-#+END_SRC
* Language Config
Configuration for various languages which I feel can be useful
** C-style languages
@@ -282,7 +271,7 @@ Emacs doesn't have the full range of styles that I want, so lemme just do it mys
:desc "Send buffer" "b" #'python-shell-send-buffer
:desc "Send function" "f" #'python-shell-send-defun)))
#+END_SRC
-** TypeScript
+** Typescript
- Typescript (in my opinion) should be indented by 2
- Setup the LSP server on the lsp-language-id-config in case it hasn't already
#+BEGIN_SRC elisp