1
0
mirror of https://github.com/scopatz/nanorc synced 2024-09-28 17:09:50 +02:00

Merge pull request #71 from astronautlevel2/master

Updated nanorc and added OCaml nanorc
This commit is contained in:
Anthony Scopatz 2015-12-15 01:18:49 -05:00
commit ba4045fc99
4 changed files with 52 additions and 0 deletions

View File

@ -24,3 +24,7 @@ You can also append the contents of ``~/.nano/nanorc`` into your
``~/.nanorc`` to include all languages::
cat ~/.nano/nanorc >> ~/.nanorc
Finally, you can run an automatic installer using the following code::
$ curl https://github.com/scopatz/nanorc/raw/installer.sh | sh

20
install.sh Executable file
View File

@ -0,0 +1,20 @@
wget -O /tmp/nanorc.zip https://github.com/scopatz/nanorc/archive/master.zip
if [ ! -d ~/.nano/ ]
then
mkdir ~/.nano/
fi
cd ~/.nano/
unzip -o "/tmp/nanorc.zip"
mv nanorc-master/* ./
rm -rf nanorc-master
if [ ! -f ~/.nanorc ]
then
touch ~/.nanorc
fi
cat ~/.nano/nanorc >> ~/.nanorc
sort -u ~/.nanorc > /tmp/nanorc2
cat /tmp/nanorc2 > ~/.nanorc

3
nanorc
View File

@ -1,4 +1,5 @@
include ~/.nano/apacheconf.nanorc
include ~/.nano/arduino.nanorc
include ~/.nano/asciidoc.nanorc
include ~/.nano/asm.nanorc
include ~/.nano/awk.nanorc
@ -41,6 +42,7 @@ include ~/.nano/mpdconf.nanorc
include ~/.nano/mutt.nanorc
include ~/.nano/nanorc.nanorc
include ~/.nano/nginx.nanorc
include ~/.nano/ocaml.nanorc
include ~/.nano/patch.nanorc
include ~/.nano/peg.nanorc
include ~/.nano/perl.nanorc
@ -54,6 +56,7 @@ include ~/.nano/python.nanorc
include ~/.nano/reST.nanorc
include ~/.nano/rpmspec.nanorc
include ~/.nano/ruby.nanorc
include ~/.nano/rust.nanorc
include ~/.nano/scala.nanorc
include ~/.nano/sed.nanorc
include ~/.nano/sh.nanorc

25
ocaml.nanorc Normal file
View File

@ -0,0 +1,25 @@
syntax "ocaml" "\.mli?$"
#uid
color red "\<[A-Z][0-9a-z_]{2,}\>"
#declarations
color green "\<(let|val|method|in|and|rec|private|virtual|constraint)\>"
#structure items
color red "\<(type|open|class|module|exception|external)\>"
#patterns
color blue "\<(fun|function|functor|match|try|with)\>"
#patterns-modifiers
color yellow "\<(as|when|of)\>"
#conditions
color cyan "\<(if|then|else)\>"
#blocs
color magenta "\<(begin|end|object|struct|sig|for|while|do|done|to|downto)\>"
#constantes
color green "\<(true|false)\>"
#modules/classes
color green "\<(include|inherit|initializer)\>"
#expr modifiers
color yellow "\<(new|ref|mutable|lazy|assert|raise)\>"
#comments
color white start="\(\*" end="\*\)"
#strings (no multiline handling yet)
color brightblack ""[^\"]*""