tweaks and documentation
This commit is contained in:
parent
653afd47ab
commit
710c7b162d
@ -20,6 +20,15 @@ $ emacs # start up emacs in the normal way and let it bootstrap
|
|||||||
|
|
||||||
This configuration bootstraps and uses straight.el to manage all package installations.
|
This configuration bootstraps and uses straight.el to manage all package installations.
|
||||||
|
|
||||||
|
Once you get emacs started, you will quickly find, that it is nearly as minimal as it can be. straight.el and use-package
|
||||||
|
will have been bootstrapped, along with golden-ratio. There is a handy note in the keybindings listed on the dashboard
|
||||||
|
telling you which keys to press, in order to get to the customization group. From there, you can enable and configure
|
||||||
|
all of the avaiable layers of support. That keybinding for reference, is _C-c t C-c_.
|
||||||
|
|
||||||
|
#+CAPTION: An example of the configuration options, in console mode
|
||||||
|
#+NAME: config
|
||||||
|
[[./config.png]]
|
||||||
|
|
||||||
** Help
|
** Help
|
||||||
|
|
||||||
All keybindings set in this configuration are listed on the dashboard. Any other keybindings set by this configuration
|
All keybindings set in this configuration are listed on the dashboard. Any other keybindings set by this configuration
|
||||||
|
BIN
config.png
Normal file
BIN
config.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 73 KiB |
4
init.el
4
init.el
@ -27,9 +27,11 @@
|
|||||||
;; nerdtree configuration
|
;; nerdtree configuration
|
||||||
(require 'thwap-nerdtree)
|
(require 'thwap-nerdtree)
|
||||||
;; company configuration
|
;; company configuration
|
||||||
(require 'thwap-co)
|
(require 'thwap-comp)
|
||||||
;; LSP configuration
|
;; LSP configuration
|
||||||
(require 'thwap-lsp)
|
(require 'thwap-lsp)
|
||||||
|
;; Eglot configuration
|
||||||
|
(require 'thwap-eglot)
|
||||||
;; projectile configuration
|
;; projectile configuration
|
||||||
(require 'thwap-projectile)
|
(require 'thwap-projectile)
|
||||||
;; magit configuration
|
;; magit configuration
|
||||||
|
@ -15,4 +15,4 @@
|
|||||||
(straight-use-package 'company)
|
(straight-use-package 'company)
|
||||||
(add-hook 'after-init-hook 'global-company-mode))
|
(add-hook 'after-init-hook 'global-company-mode))
|
||||||
|
|
||||||
(provide 'thwap-co)
|
(provide 'thwap-comp)
|
@ -125,7 +125,7 @@
|
|||||||
:group 'thwap-config)
|
:group 'thwap-config)
|
||||||
|
|
||||||
;; Eglot toggle
|
;; Eglot toggle
|
||||||
(defcustom thwap-dev-enable-eglot t
|
(defcustom thwap-dev-enable-eglot nil
|
||||||
"Whether or not to setup Eglot."
|
"Whether or not to setup Eglot."
|
||||||
:type 'boolean
|
:type 'boolean
|
||||||
:group 'thwap-config)
|
:group 'thwap-config)
|
||||||
|
Loading…
Reference in New Issue
Block a user