diff options
author | Michaël Ball <michael.ball@gmail.com> | 2018-06-30 12:28:06 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@gmail.com> | 2018-06-30 12:34:10 +0100 |
commit | 1dd46ad5d88c28f510c7d05e7c4b024441a3d68c (patch) | |
tree | 1da999c8d363ddff5e46324129ef4f627a647168 | |
parent | f2f2bd3c9bc85a36e17d2dd13de185c412243b12 (diff) |
Add csound-mode
-rwxr-xr-x | .emacs | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -41,7 +41,7 @@ '(org-agenda-files (quote ("~/orgmode.org"))) '(package-selected-packages (quote - (git-gutter emamux use-package lsp-imenu elixir-mode web-mode lsp-go lsp-javascript-typescript multiple-cursors lsp-python lsp-rust lsp-vue company-lsp lsp-ui lsp-mode helm-company company json-mode helm-flycheck flycheck cygwin-mount python-mode typescript-mode org highlight-indent-guides helm-cscope helm-go-package helm-pydoc magit airline-themes all-the-icons base16-theme go-mode helm neotree powerline rust-mode))) + (csound-mode git-gutter emamux use-package lsp-imenu elixir-mode web-mode lsp-go lsp-javascript-typescript multiple-cursors lsp-python lsp-rust lsp-vue company-lsp lsp-ui lsp-mode helm-company company json-mode helm-flycheck flycheck cygwin-mount python-mode typescript-mode org highlight-indent-guides helm-cscope helm-go-package helm-pydoc magit airline-themes all-the-icons base16-theme go-mode helm neotree powerline rust-mode))) '(safe-local-variable-values (quote ((engine . jinja2) (engine . jinja))))) (custom-set-faces ;; custom-set-faces was added by Custom. @@ -320,5 +320,10 @@ :ensure emamux) (global-set-key (kbd "C-z") emamux:keymap) +;;; csound +(use-package csound-mode + :ensure csound-mode) +(require 'csound-mode) + (provide '.emacs) ;;; .emacs ends here |