Text Editors
This section details the currently existing text editor support for Dahlia.
Vim
We have a syntax highlighting plugin called vim-fuse
.
- If you're using Pathogen, install
vim-fuse
by running this in thedahlia/
directory:cp -r tools/vim ~/.vim/bundle/vim-fuse
Emacs
We have a mode that provides syntax highlighting and indentation.
Add tools/fuse-mode
to your emacs load-path and then require fuse-mode
.
For example, if the dahlia
repo is located at ~/dahlia
. Then you would
add the following lines to your emacs init file:
(push "~/dahlia/tools/emacs/fuse-mode")
(require 'fuse-mode)