~ido -> ivy and disable calendar
This commit is contained in:
@@ -21,11 +21,11 @@
|
|||||||
|
|
||||||
:completion
|
:completion
|
||||||
(company +childframe) ; the ultimate code completion backend
|
(company +childframe) ; the ultimate code completion backend
|
||||||
;;(ivy
|
(ivy
|
||||||
;; +fuzzy
|
+fuzzy
|
||||||
;; +icons) ; a search engine for love and life
|
+icons) ; a search engine for love and life
|
||||||
;;helm ; the *other* 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
|
:ui
|
||||||
;;deft ; notational velocity for Emacs
|
;;deft ; notational velocity for Emacs
|
||||||
@@ -171,7 +171,7 @@
|
|||||||
;; toward a specific purpose. They may have additional dependencies and
|
;; toward a specific purpose. They may have additional dependencies and
|
||||||
;; should be loaded late.
|
;; should be loaded late.
|
||||||
:app
|
:app
|
||||||
calendar
|
;;calendar
|
||||||
;;irc ; how neckbeards socialize
|
;;irc ; how neckbeards socialize
|
||||||
(rss) ; emacs as an RSS reader
|
(rss) ; emacs as an RSS reader
|
||||||
;;twitter ; twitter client https://twitter.com/vnought
|
;;twitter ; twitter client https://twitter.com/vnought
|
||||||
|
|||||||
@@ -222,17 +222,6 @@ Add keybind to recompile (inside the buffer)
|
|||||||
'company-mode-hook
|
'company-mode-hook
|
||||||
#'(lambda () (setq company-frontends '(company-preview-frontend company-pseudo-tooltip-frontend))))
|
#'(lambda () (setq company-frontends '(company-preview-frontend company-pseudo-tooltip-frontend))))
|
||||||
#+END_SRC
|
#+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
|
* Language Config
|
||||||
Configuration for various languages which I feel can be useful
|
Configuration for various languages which I feel can be useful
|
||||||
** C-style languages
|
** 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 buffer" "b" #'python-shell-send-buffer
|
||||||
:desc "Send function" "f" #'python-shell-send-defun)))
|
:desc "Send function" "f" #'python-shell-send-defun)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** TypeScript
|
** Typescript
|
||||||
- Typescript (in my opinion) should be indented by 2
|
- 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
|
- Setup the LSP server on the lsp-language-id-config in case it hasn't already
|
||||||
#+BEGIN_SRC elisp
|
#+BEGIN_SRC elisp
|
||||||
|
|||||||
Reference in New Issue
Block a user