emacs: try adding matlab support, setup for laptop

This commit is contained in:
Julian Mutter 2022-10-25 15:30:07 +02:00
parent 7355310b53
commit abce1aa5ed
4 changed files with 13 additions and 1 deletions

View File

@ -233,6 +233,13 @@
(insert new-buffer-contents)
(evil-indent (buffer-end -1) (buffer-end +1)))
)
;; (autoload 'matlab-mode "matlab" "Matlab Editing Mode" t)
;; (add-to-list
;; 'auto-mode-alist
;; '("\\.m$" . matlab-mode))
;; (setq matlab-indent-function t)
;; (setq matlab-shell-command "matlab")
#+end_src
** Python
#+begin_src emacs-lisp :tangle yes

View File

@ -82,7 +82,7 @@
:checkers
syntax ; tasing you for every semicolon you forget
(spell +flyspell +everywhere) ; tasing you for misspelling mispelling
;;grammar ; tasing grammar mistake every you make
grammar ; tasing grammar mistake every you make
:tools
;;ansible

View File

@ -20,6 +20,9 @@
;(package! another-package
; :recipe (:host github :repo "username/repo"))
(package! matlab
:recipe (:repo "https://git.code.sf.net/p/matlab-emacs/src" ))
;; If the package you are trying to install does not contain a PACKAGENAME.el
;; file, or is located in a subdirectory of the repo, you'll need to specify
;; `:files' in the `:recipe':

View File

@ -3,6 +3,7 @@
export PATH=/home/julian/.emacs.d/bin:$PATH
export PATH=/home/julian/.cargo/bin:$PATH
export PATH=/home/julian/perl5/bin:$PATH
[ -f "/home/julian/.ghcup/env" ] && source "/home/julian/.ghcup/env" # ghcup-env
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
@ -108,3 +109,4 @@ follow_du () {
}
eval "$(starship init zsh)"