mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-11 18:41:16 +10:00
GNU Emacs config from video: Leaving Doom For GNU Emacs
This commit is contained in:
+9
-13
@@ -30,6 +30,7 @@
|
||||
- [[#change-modeline-to-dooms-modeline][Change Modeline To Doom's Modeline]]
|
||||
- [[#ivy-counselswiper][IVY (COUNSEL/SWIPER)]]
|
||||
- [[#ivy-posframe][IVY-POSFRAME]]
|
||||
- [[#language-support][LANGUAGE SUPPORT]]
|
||||
- [[#magit][MAGIT]]
|
||||
- [[#org-mode][ORG MODE]]
|
||||
- [[#defining-a-few-things][Defining A Few Things]]
|
||||
@@ -44,7 +45,6 @@
|
||||
- [[#shells][SHELLS]]
|
||||
- [[#eshell][Eshell]]
|
||||
- [[#vterm][Vterm]]
|
||||
- [[#language-support][LANGUAGE SUPPORT]]
|
||||
- [[#theme][THEME]]
|
||||
- [[#which-key][WHICH KEY]]
|
||||
|
||||
@@ -142,7 +142,6 @@ Emacs Dashboard is an extensible startup screen showing you recent files, bookma
|
||||
(bookmarks . 5)
|
||||
(projects . 5)
|
||||
(registers . 5)))
|
||||
|
||||
:config
|
||||
(dashboard-setup-startup-hook)
|
||||
(dashboard-modify-heading-icons '((recents . "file-text")
|
||||
@@ -285,7 +284,6 @@ Ivy is a generic completion mechanism for Emacs.
|
||||
:ensure t
|
||||
:after ivy
|
||||
:config (counsel-mode))
|
||||
|
||||
(use-package ivy
|
||||
:ensure t
|
||||
:defer 0.1
|
||||
@@ -296,7 +294,6 @@ Ivy is a generic completion mechanism for Emacs.
|
||||
(ivy-count-format "(%d/%d) ")
|
||||
(ivy-use-virtual-buffers t)
|
||||
:config (ivy-mode))
|
||||
|
||||
(use-package ivy-rich
|
||||
:ensure t
|
||||
:after ivy
|
||||
@@ -307,7 +304,6 @@ Ivy is a generic completion mechanism for Emacs.
|
||||
:config
|
||||
(ivy-set-display-transformer 'ivy-switch-buffer
|
||||
'ivy-rich-switch-buffer-transformer))
|
||||
|
||||
(use-package swiper
|
||||
:ensure t
|
||||
:after ivy
|
||||
@@ -355,6 +351,14 @@ Available functions (positions) for 'ivy-posframe-display-functions-alist'
|
||||
(ivy-posframe-mode 1)) ; 1 enables posframe-mode, 0 disables it.
|
||||
#+end_src
|
||||
|
||||
* LANGUAGE SUPPORT
|
||||
Adding packages for programming langauges, so we can have nice things like syntax highlighting.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package haskell-mode
|
||||
:ensure t)
|
||||
#+end_src
|
||||
|
||||
* MAGIT
|
||||
A git client for Emacs. Often cited as a killer feature for Emacs.
|
||||
|
||||
@@ -514,14 +518,6 @@ Vterm is a terminal emulator within Emacs. The 'shell-file-name' setting sets t
|
||||
vterm-max-scrollback 5000)
|
||||
#+end_src
|
||||
|
||||
* LANGUAGE SUPPORT
|
||||
Adding packages for programming langauges, so we can have nice things like syntax highlighting.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package haskell-mode
|
||||
:ensure t)
|
||||
#+end_src
|
||||
|
||||
* THEME
|
||||
We need a nice colorscheme. The Doom Emacs guys have a nice collection of themes, so let's install them!
|
||||
|
||||
|
||||
Reference in New Issue
Block a user