Emacs syntax highlight on
Wednesday, July 20th, 2005add this line to .emacs to turn syntax highlight on by default:
(global-font-lock-mode t)
| | About Me | Blogs | Photos | Publications | Resume | |
add this line to .emacs to turn syntax highlight on by default:
(global-font-lock-mode t)
I wanted to maintain a standard header for my website in one file and include it in my webpages. We could do this pretty neatly with Apache’s SSI (Server Side Includes).
First we need to install and enable the apache include module:
$ apt-get install apache2-common
$ ln -s /etc/apache2/mods-available/include.load /etc/apache2/mods-enabled/
Then in the http config file add [...]