Skip to content

Commit

Permalink
Add emacs config file
Browse files Browse the repository at this point in the history
  • Loading branch information
tdickman committed Nov 14, 2018
1 parent 6163432 commit ab49533
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions emacs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
; Some initial langauges we want org-babel to support
(org-babel-do-load-languages
'org-babel-load-languages
'(
(sh . t)
(python . t)
(R . t)
(ruby . t)
(ditaa . t)
(dot . t)
(octave . t)
(sqlite . t)
(perl . t)
))

; Add short cut keys for the org-agenda
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-ca" 'org-agenda)
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ SCRIPTPATH=`pwd`
mkdir -p ~/.tmp
rm -rf ~/.vim
ln -s $SCRIPTPATH/vim ~/.vim
ln -s $SCRIPTPATH/emacs ~/.emacs
ln -s $SCRIPTPATH/tmux.conf ~/.tmux.conf
ln -s $SCRIPTPATH/bash_aliases.sh ~/.bash_aliases.sh
ln -s $SCRIPTPATH/bash_shared.sh ~/.bash_shared.sh
Expand Down

0 comments on commit ab49533

Please sign in to comment.