Slightly better organization of programming section
This commit is contained in:
parent
8ba7f8161d
commit
9a77a7c770
1 changed files with 23 additions and 23 deletions
|
@ -35,21 +35,6 @@ Seems that all programming interfaces and workflows behave similarly. One other
|
||||||
#+end_src
|
#+end_src
|
||||||
* General
|
* General
|
||||||
The following work for all programming languages.
|
The following work for all programming languages.
|
||||||
** Markdown
|
|
||||||
All the READMEs and other documentation use [[https://jblevins.org/projects/markdown-mode/][markdown-mode]].
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package markdown-mode
|
|
||||||
:mode ("README\\.md\\'" . gfm-mode)
|
|
||||||
:init (setq markdown-command "multimarkdown")
|
|
||||||
:general
|
|
||||||
(:states 'normal :no-autoload t :keymaps 'markdown-mode-map
|
|
||||||
"SPC m l" '("insert link" . markdown-insert-link)
|
|
||||||
;; SPC u 3 SPC m h for a third-level header:
|
|
||||||
"SPC m h" '("insert header" . markdown-insert-header-dwim)
|
|
||||||
"SPC m e" '("export" . markdown-export)
|
|
||||||
"SPC m p" '("preview" . markdown-export-and-preview)))
|
|
||||||
#+end_src
|
|
||||||
Note that the markdown-specific commands use the ~C-c C-c~ and ~C-c C-s~ prefixes.
|
|
||||||
** direnv
|
** direnv
|
||||||
Farm off commands into /virtual environments/:
|
Farm off commands into /virtual environments/:
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -217,6 +202,14 @@ This requires the [[http://company-mode.github.io/][company]] completion backend
|
||||||
:hook (after-init . global-company-mode)
|
:hook (after-init . global-company-mode)
|
||||||
:bind ("s-." . company-complete))
|
:bind ("s-." . company-complete))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
*** Display Configuration
|
||||||
|
Using the [[https://github.com/seagle0128/doom-modeline][Doom Modeline]] to add notifications:
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package doom-modeline
|
||||||
|
:config
|
||||||
|
(setq doom-modeline-lsp t
|
||||||
|
doom-modeline-env-version t))
|
||||||
|
#+end_src
|
||||||
** Function Call Notifications
|
** Function Call Notifications
|
||||||
As I've mentioned [[http://www.howardism.org/Technical/Emacs/beep-for-emacs.html][on my website]], I've created a [[file:~/website/Technical/Emacs/beep-for-emacs.org][beep function]] that notifies when long running processes complete.
|
As I've mentioned [[http://www.howardism.org/Technical/Emacs/beep-for-emacs.html][on my website]], I've created a [[file:~/website/Technical/Emacs/beep-for-emacs.org][beep function]] that notifies when long running processes complete.
|
||||||
|
|
||||||
|
@ -341,16 +334,23 @@ While my company is typically using =Rakefile= and =Makefile= in the top-level p
|
||||||
}
|
}
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Display Configuration
|
|
||||||
Using the [[https://github.com/seagle0128/doom-modeline][Doom Modeline]] to add notifications:
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package doom-modeline
|
|
||||||
:config
|
|
||||||
(setq doom-modeline-lsp t
|
|
||||||
doom-modeline-env-version t))
|
|
||||||
#+end_src
|
|
||||||
* Languages
|
* Languages
|
||||||
Simple to configure languages go here. More advanced stuff will go in their own files… eventually.
|
Simple to configure languages go here. More advanced stuff will go in their own files… eventually.
|
||||||
|
** Markdown
|
||||||
|
All the READMEs and other documentation use [[https://jblevins.org/projects/markdown-mode/][markdown-mode]].
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package markdown-mode
|
||||||
|
:mode ("README\\.md\\'" . gfm-mode)
|
||||||
|
:init (setq markdown-command "multimarkdown")
|
||||||
|
:general
|
||||||
|
(:states 'normal :no-autoload t :keymaps 'markdown-mode-map
|
||||||
|
"SPC m l" '("insert link" . markdown-insert-link)
|
||||||
|
;; SPC u 3 SPC m h for a third-level header:
|
||||||
|
"SPC m h" '("insert header" . markdown-insert-header-dwim)
|
||||||
|
"SPC m e" '("export" . markdown-export)
|
||||||
|
"SPC m p" '("preview" . markdown-export-and-preview)))
|
||||||
|
#+end_src
|
||||||
|
Note that the markdown-specific commands use the ~C-c C-c~ and ~C-c C-s~ prefixes.
|
||||||
** Ansible
|
** Ansible
|
||||||
Doing a lot of [[https://github.com/yoshiki/yaml-mode][YAML work]], but this project needs a new maintainer.
|
Doing a lot of [[https://github.com/yoshiki/yaml-mode][YAML work]], but this project needs a new maintainer.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
Loading…
Reference in a new issue