-
-
Save ctrlShiftBryan/f9ab7e9ee88740e4a75148156d09ecba to your computer and use it in GitHub Desktop.
Revisions
-
marcwebbie revised this gist
May 28, 2014 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -45,6 +45,9 @@ cd .emacs.d # postextract_command => '/tmp/emacs-24.3/autogen.sh && configure --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no #--with-tiff=no && make && sudo make install' #} # Generate TAGS manually #find . -regex ".*\(haml$\|rb$\|erb\)" | etags - # compile emacs from git #git clone git://git.savannah.gnu.org/emacs.git #cd emacs -
marcwebbie revised this gist
May 28, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -28,8 +28,8 @@ cd .emacs.d # Other actions ########################## # Add aliases on linux #alias emacsdaemon="/usr/local/bin/emacs --daemon" #alias ec='emacsclient -c -a "" $*' # one liner compile from terminal # https://gist.github.com/marcwebbie/27f637653fe038c530e7/raw/dac422c74ed0bdd8c846764c27aeb94ddc335732/compile_emacs.sh | sh -
marcwebbie revised this gist
May 28, 2014 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,8 @@ # install needed libraries sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel # compile autoconf cd /tmp wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.bz2 tar xjvf autoconf-2.68.tar.bz2 cd autoconf-2.68/ -
marcwebbie revised this gist
May 28, 2014 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,13 +25,13 @@ git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d cd .emacs.d ~/.cask/bin/cask ########################## # Other actions ########################## # Add aliases on linux alias emacsdaemon="/usr/local/bin/emacs --daemon" alias ec='emacsclient -c -a "" $*' # one liner compile from terminal # https://gist.github.com/marcwebbie/27f637653fe038c530e7/raw/dac422c74ed0bdd8c846764c27aeb94ddc335732/compile_emacs.sh | sh -
marcwebbie revised this gist
May 28, 2014 . 1 changed file with 8 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,7 +29,14 @@ cd .emacs.d alias emacsdaemon="/usr/local/bin/emacs --daemon" alias ec='emacsclient -c -a "" $*' ########################## # Other actions ########################## # one liner compile from terminal # https://gist.github.com/marcwebbie/27f637653fe038c530e7/raw/dac422c74ed0bdd8c846764c27aeb94ddc335732/compile_emacs.sh | sh # one liner reinstall config # cd ~ && sudo rm -rf .emacs.d && git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d && cd .emacs.d && ~/.cask/bin/cask # puppet manifest example (http://superuser.com/questions/415047/install-a-source-package-with-puppet) #netinstall { 'emacs-24.3': -
marcwebbie revised this gist
May 28, 2014 . 1 changed file with 8 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,13 +16,6 @@ cd emacs-emacs-24.3.91 ./autogen.sh && ./configure --with-jpeg=no && make bootstrap && sudo make install cd .. # install cask for emacs config management curl -fsSkL https://raw.github.com/cask/cask/master/go | python @@ -44,4 +37,11 @@ alias ec='emacsclient -c -a "" $*' # extracted_dir => 'emacs-24.3', # destination_dir => '/tmp', # postextract_command => '/tmp/emacs-24.3/autogen.sh && configure --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no #--with-tiff=no && make && sudo make install' #} # compile emacs from git #git clone git://git.savannah.gnu.org/emacs.git #cd emacs #./autogen.sh #./configure --with-jpeg=no #make && sudo make install -
marcwebbie revised this gist
May 28, 2014 . 1 changed file with 18 additions and 24 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,20 @@ cd /tmp # install needed libraries sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel # compile autoconf wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.bz2 tar xjvf autoconf-2.68.tar.bz2 cd autoconf-2.68/ ./configure && make && sudo make install # compile emacs 24.3 cd /tmp curl -L https://github.com/mirrors/emacs/archive/emacs-24.3.91.tar.gz | tar zx cd emacs-emacs-24.3.91 ./autogen.sh && ./configure --with-jpeg=no && make bootstrap && sudo make install cd .. # compile emacs from git #git clone git://git.savannah.gnu.org/emacs.git @@ -17,13 +23,6 @@ sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel #./configure --with-jpeg=no #make && sudo make install # install cask for emacs config management curl -fsSkL https://raw.github.com/cask/cask/master/go | python @@ -33,21 +32,16 @@ git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d cd .emacs.d ~/.cask/bin/cask # Add aliases on linux alias emacsdaemon="/usr/local/bin/emacs --daemon" alias ec='emacsclient -c -a "" $*' # cd ~ && rm -rf .emacs.d && git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d && cd .emacs.d && ~/.cask/bin/cask # puppet manifest example (http://superuser.com/questions/415047/install-a-source-package-with-puppet) #netinstall { 'emacs-24.3': # url => 'https://github.com/mirrors/emacs/archive/emacs-24.3.91.tar.gz', # extracted_dir => 'emacs-24.3', # destination_dir => '/tmp', # postextract_command => '/tmp/emacs-24.3/autogen.sh && configure --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no #--with-tiff=no && make && sudo make install' #} -
marcwebbie revised this gist
May 26, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,6 +18,7 @@ sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel #make && sudo make install # Compile 24.3 version of emacs cd /tmp curl -L https://github.com/mirrors/emacs/archive/emacs-24.3.91.tar.gz | tar zx cd emacs-emacs-24.3.91 ./autogen.sh && ./configure --with-jpeg=no && make bootstrap && sudo make install -
marcwebbie revised this gist
May 26, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -20,7 +20,7 @@ sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel # Compile 24.3 version of emacs curl -L https://github.com/mirrors/emacs/archive/emacs-24.3.91.tar.gz | tar zx cd emacs-emacs-24.3.91 ./autogen.sh && ./configure --with-jpeg=no && make bootstrap && sudo make install cd .. # install cask for emacs config management -
marcwebbie revised this gist
May 26, 2014 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -38,9 +38,8 @@ cd .emacs.d #export EDITOR='/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c' # Add env variables linux alias emacsdaemon="/usr/local/bin/emacs --daemon" alias ec='emacsclient -c -a "" $*' # puppet manifest example (http://superuser.com/questions/415047/install-a-source-package-with-puppet) netinstall { 'emacs-24.3': -
marcwebbie revised this gist
May 26, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -40,6 +40,7 @@ cd .emacs.d # Add env variables linux #alias emacsdaemon="/usr/local/bin/emacs --daemon" #alias emacs="/usr/local/bin/emacs -c -n" #alias ec='emacsclient -c -a "" $*' # puppet manifest example (http://superuser.com/questions/415047/install-a-source-package-with-puppet) netinstall { 'emacs-24.3': -
marcwebbie revised this gist
May 22, 2014 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,4 +47,6 @@ netinstall { 'emacs-24.3': extracted_dir => 'emacs-24.3', destination_dir => '/tmp', postextract_command => '/tmp/emacs-24.3/autogen.sh && configure --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no --with-tiff=no && make && sudo make install' } # cd ~ && rm -rf .emacs.d && git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d && cd .emacs.d && ~/.cask/bin/cask -
marcwebbie revised this gist
May 20, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -42,8 +42,8 @@ cd .emacs.d #alias emacs="/usr/local/bin/emacs -c -n" # puppet manifest example (http://superuser.com/questions/415047/install-a-source-package-with-puppet) netinstall { 'emacs-24.3': url => 'https://github.com/mirrors/emacs/archive/emacs-24.3.91.tar.gz', extracted_dir => 'emacs-24.3', destination_dir => '/tmp', postextract_command => '/tmp/emacs-24.3/autogen.sh && configure --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no --with-tiff=no && make && sudo make install' -
marcwebbie revised this gist
May 20, 2014 . 1 changed file with 13 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -35,4 +35,16 @@ cd .emacs.d # Add env variables #alias es='/Applications/Emacs.app/Contents/MacOS/Emacs --daemon' #alias emacs='/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c -n' #export EDITOR='/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c' # Add env variables linux #alias emacsdaemon="/usr/local/bin/emacs --daemon" #alias emacs="/usr/local/bin/emacs -c -n" # puppet manifest example (http://superuser.com/questions/415047/install-a-source-package-with-puppet) netinstall { 'postgis': url => 'http://postgis.refractions.net/download/postgis-1.5.5.tar.gz', extracted_dir => 'emacs-24.3', destination_dir => '/tmp', postextract_command => '/tmp/emacs-24.3/autogen.sh && configure --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no --with-tiff=no && make && sudo make install' } -
marcwebbie revised this gist
May 20, 2014 . 1 changed file with 12 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,12 +10,18 @@ cd .. # install needed libraries sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel # compile emacs from git #git clone git://git.savannah.gnu.org/emacs.git #cd emacs #./autogen.sh #./configure --with-jpeg=no #make && sudo make install # Compile 24.3 version of emacs curl -L https://github.com/mirrors/emacs/archive/emacs-24.3.91.tar.gz | tar zx cd emacs-emacs-24.3.91 ./autogen.sh && ./configure --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no --with-tiff=no && make bootstrap cd .. # install cask for emacs config management curl -fsSkL https://raw.github.com/cask/cask/master/go | python -
marcwebbie revised this gist
May 20, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ cd /tmp # compile autoconf wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.bz2 tar xjvf autoconf-2.68.tar.bz2 cd autoconf-2.68/ @@ -10,7 +10,7 @@ cd .. # install needed libraries sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel # compile emacs git clone git://git.savannah.gnu.org/emacs.git cd emacs ./autogen.sh -
marcwebbie revised this gist
May 20, 2014 . 1 changed file with 4 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -19,15 +19,14 @@ make && sudo make install # install cask for emacs config management curl -fsSkL https://raw.github.com/cask/cask/master/go | python # install config cd ~ git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d cd .emacs.d ~/.cask/bin/cask # Add env variables #alias es='/Applications/Emacs.app/Contents/MacOS/Emacs --daemon' #alias emacs='/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c -n' #export EDITOR='/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c' -
marcwebbie revised this gist
May 20, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,7 +25,7 @@ alias cask="~/.cask/bin/cask" cd ~ git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d cd .emacs.d ./~/.cask/bin/cask # Add env variables alias es='/Applications/Emacs.app/Contents/MacOS/Emacs --daemon' -
marcwebbie revised this gist
May 18, 2014 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,4 +25,9 @@ alias cask="~/.cask/bin/cask" cd ~ git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d cd .emacs.d cask # Add env variables alias es='/Applications/Emacs.app/Contents/MacOS/Emacs --daemon' alias emacs='/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c -n' export EDITOR='/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c' -
marcwebbie revised this gist
May 16, 2014 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,14 @@ cd /tmp # install autoconf wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.bz2 tar xjvf autoconf-2.68.tar.bz2 cd autoconf-2.68/ ./configure && make && sudo make install cd .. # install needed libraries sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel # install emacs git clone git://git.savannah.gnu.org/emacs.git -
marcwebbie revised this gist
May 16, 2014 . 1 changed file with 11 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -13,4 +13,14 @@ git clone git://git.savannah.gnu.org/emacs.git cd emacs ./autogen.sh ./configure --with-jpeg=no make && sudo make install # install cask for emacs config management curl -fsSkL https://raw.github.com/cask/cask/master/go | python alias cask="~/.cask/bin/cask" # install config cd ~ git clone git://github.com/marcwebbie/emacs.git ~/.emacs.d cd .emacs.d cask -
marcwebbie created this gist
May 13, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ # install autoconf wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.bz2 tar xjvf autoconf-2.68.tar.bz2 cd autoconf-2.68/ ./configure && make && sudo make install # install needed libraries sudo yum install texinfo libXpm-devel giflib-devel libtiff-devel libotf-devel cd .. # install emacs git clone git://git.savannah.gnu.org/emacs.git cd emacs ./autogen.sh ./configure --with-jpeg=no make && sudo make install