mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-31 00:17:46 +02:00
added shell and vim shortcuts for octave
This commit is contained in:
parent
85298c3b9e
commit
901c6856af
@ -60,6 +60,10 @@ alias upmutt="mbsync -a && neomutt"
|
|||||||
# mv
|
# mv
|
||||||
alias mv="mv -i"
|
alias mv="mv -i"
|
||||||
|
|
||||||
|
# octave
|
||||||
|
alias octave="octave --persist"
|
||||||
|
alias matlab="octave --persist"
|
||||||
|
|
||||||
# pacman
|
# pacman
|
||||||
alias pac="sudo pacman"
|
alias pac="sudo pacman"
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ case "$file" in
|
|||||||
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf > "$base".pdf ;;
|
*\.[0-9]) refer -PS -e "$file" | groff -mandoc -T pdf > "$base".pdf ;;
|
||||||
*\.rmd) echo "require(rmarkdown); render('$file')" | R -q --vanilla ;;
|
*\.rmd) echo "require(rmarkdown); render('$file')" | R -q --vanilla ;;
|
||||||
*\.tex) textype "$file" ;;
|
*\.tex) textype "$file" ;;
|
||||||
|
*\.m) octave --no-window-system "$file" ;;
|
||||||
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
|
*\.md) pandoc "$file" --pdf-engine=xelatex -o "$base".pdf ;;
|
||||||
*config.h) sudo make install ;;
|
*config.h) sudo make install ;;
|
||||||
*\.c) if [ -f Makefile ]; then make run; else cc "$file" -o "$base" && "$base"; fi ;;
|
*\.c) if [ -f Makefile ]; then make run; else cc "$file" -o "$base" && "$base"; fi ;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user