diff --git a/README.org b/README.org index 4c87e66..30aac34 100644 --- a/README.org +++ b/README.org @@ -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. +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 All keybindings set in this configuration are listed on the dashboard. Any other keybindings set by this configuration diff --git a/config.png b/config.png new file mode 100644 index 0000000..7ca8a68 Binary files /dev/null and b/config.png differ diff --git a/init.el b/init.el index 985510e..beb5bdf 100644 --- a/init.el +++ b/init.el @@ -27,9 +27,11 @@ ;; nerdtree configuration (require 'thwap-nerdtree) ;; company configuration -(require 'thwap-co) +(require 'thwap-comp) ;; LSP configuration (require 'thwap-lsp) +;; Eglot configuration +(require 'thwap-eglot) ;; projectile configuration (require 'thwap-projectile) ;; magit configuration diff --git a/lib/thwap-co.el b/lib/thwap-comp.el similarity index 96% rename from lib/thwap-co.el rename to lib/thwap-comp.el index 30f3cd6..9e58f86 100644 --- a/lib/thwap-co.el +++ b/lib/thwap-comp.el @@ -15,4 +15,4 @@ (straight-use-package 'company) (add-hook 'after-init-hook 'global-company-mode)) -(provide 'thwap-co) +(provide 'thwap-comp) diff --git a/lib/thwap-config.el b/lib/thwap-config.el index 937b9a0..96990a7 100644 --- a/lib/thwap-config.el +++ b/lib/thwap-config.el @@ -125,7 +125,7 @@ :group 'thwap-config) ;; Eglot toggle -(defcustom thwap-dev-enable-eglot t +(defcustom thwap-dev-enable-eglot nil "Whether or not to setup Eglot." :type 'boolean :group 'thwap-config)