~cleaning up written text and code

Stuff that is inaccurate now, cleaned up to be up-to-date.
This commit is contained in:
odave
2020-03-26 13:54:31 +00:00
parent ce0c84d7e4
commit fc21da685f

View File

@@ -3,11 +3,12 @@
#+DESCRIPTION: My Doom Emacs configuration! #+DESCRIPTION: My Doom Emacs configuration!
* Preclude * Preclude
This is my [[https://github.com/hlissner/doom-emacs][Doom Emacs]] configuration, which I try to use for as many things as - This is my [[https://github.com/hlissner/doom-emacs][Doom Emacs]] configuration.
possible. It is currently my main editor overall, literally overtaking my life. - Use it for most of my code editing and development needs.
* Variables and Bootstrapping other modules - Incredibly versatile tool in my inventory.
Bootstrapping literate module and setting up basic variables. * Variables and Bootstrap config
** Bootstrap literate Bootstrap via literate and setting up basic variables.
** Bootstrap
Load the literate.el file to start parsing. Load the literate.el file to start parsing.
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(load (expand-file-name (concat doom-private-dir "bin/literate.el"))) (load (expand-file-name (concat doom-private-dir "bin/literate.el")))
@@ -20,23 +21,23 @@ Load the literate.el file to start parsing.
(setq doom-font (font-spec :family "Hack" :size 17))) (setq doom-font (font-spec :family "Hack" :size 17)))
#+END_SRC #+END_SRC
- Set the doom localleader to "," because it's faster - Set the doom localleader to "," because it's faster
- Using the font [[https://sourcefoundry.org/hack/][Hack]] with Fira code ligatures - Using the font [[https://sourcefoundry.org/hack/][Hack]]
** Other variables ** Other variables
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(setq completion-ignore-case t) (setq completion-ignore-case t)
(setq truncate-lines t) (setq truncate-lines t)
(setq display-line-numbers-type nil) (setq display-line-numbers-type nil)
(setq bookmark-default-file (expand-file-name (concat doom-private-dir "/bookmarks"))) (setq bookmark-default-file (expand-file-name (concat doom-private-dir "/bookmarks")))
(setq-default frame-title-format '("%b - εmacs")) (setq-default frame-title-format '("%b - Emacs"))
(cl-pushnew '("Libgen" "http://gen.lib.rus.ec/search.php?req=%s") +lookup-provider-url-alist :key #'car :test 'string=) (cl-pushnew '("Libgen" "http://gen.lib.rus.ec/search.php?req=%s") +lookup-provider-url-alist :key #'car :test 'string=)
#+END_SRC #+END_SRC
Some quality of life things and others that I couldn't really put in one category Some quality of life things and others that I couldn't really put in one category
- Displaying line numbers isn't usually something I do. If need be, I'll just - Displaying line numbers isn't usually something I do. If need be, I'll just
open them with *<SPC>tl*. open them with *<SPC>tl*.
- Set org directory - Set org directory
- Add libgen to search providers - Add libgen to search providers
* Package Config * Package Config
Config for or based heavily around specific packages that I find very important
** Projectile ** Projectile
Really simple, just want to set projectile-tags-command when projectile has Really simple, just want to set projectile-tags-command when projectile has
loaded, and easily add new ignores if necessary. Add a new ignore to the tags-alist. loaded, and easily add new ignores if necessary. Add a new ignore to the tags-alist.
@@ -146,6 +147,7 @@ If RETURN-P, return the message as a string instead of displaying it."
- Books - Books
- Weather - Weather
* Language Config * Language Config
Configuration for various languages which I feel can be useful
** C-style languages ** C-style languages
Emacs doesn't have the full range of styles that I want, so lemme just do it myself. Emacs doesn't have the full range of styles that I want, so lemme just do it myself.
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
@@ -196,7 +198,7 @@ VSCode style web-kit window.
that that
#+BEGIN_SRC elisp #+BEGIN_SRC elisp
(after! csharp-mode (after! csharp-mode
(setq omnisharp-server-executable-path "~/bin/omnisharp-roslyn/run")) (setq omnisharp-server-executable-path "~/Bin/repos/omnisharp-roslyn/run"))
#+END_SRC #+END_SRC
*** Unit test over whole projects *** Unit test over whole projects
- Implemented my own function which piggy backs counsel etags to globally search - Implemented my own function which piggy backs counsel etags to globally search