mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 16:24:18 +00:00
New development plugins
This commit is contained in:
parent
1fd11d218f
commit
5240e31177
1 changed files with 21 additions and 0 deletions
21
config.org
21
config.org
|
|
@ -2192,6 +2192,27 @@
|
|||
|
||||
(setq processing-location "/usr/bin/processing-java")
|
||||
#+END_SRC
|
||||
** AUR PKGBUILD
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package pkgbuild-mode)
|
||||
#+END_SRC
|
||||
** Golang
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package go-mode)
|
||||
(add-hook 'go-mode-hook
|
||||
(lambda ()
|
||||
(add-hook 'before-save-hook 'gofmt-before-save)
|
||||
(setq tab-width 4)
|
||||
(setq indent-tabs-mode 1)))
|
||||
#+END_SRC
|
||||
** React js
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package rjsx-mode)
|
||||
#+END_SRC
|
||||
** Treemacs
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package treemacs)
|
||||
#+END_SRC
|
||||
* Broken
|
||||
** mu4e
|
||||
*** General config
|
||||
|
|
|
|||
Loading…
Reference in a new issue