2010-07-29 00:15:43 +02:00
|
|
|
***************************************
|
|
|
|
Improved Nano Syntax Highlighting Files
|
|
|
|
***************************************
|
|
|
|
|
2013-12-20 07:05:51 +01:00
|
|
|
This repository holds ``{lang}.nanorc`` files that have improved
|
2010-07-29 00:15:43 +02:00
|
|
|
definitions of syntax highlighting for various languages.
|
|
|
|
These should be placed inside of the ``~/.nano/`` directory.
|
2013-12-20 07:05:51 +01:00
|
|
|
Alternatively::
|
|
|
|
|
|
|
|
git clone git@github.com:scopatz/nanorc.git ~/.nano
|
2014-06-20 20:23:58 +02:00
|
|
|
|
|
|
|
*Note - if you have any issues, alternatively use::
|
|
|
|
|
|
|
|
git clone https://github.com/scopatz/nanorc.git ~/.nano
|
|
|
|
|
2010-07-29 00:15:43 +02:00
|
|
|
|
|
|
|
Once there you should add the languages you want to your
|
2013-12-20 06:58:35 +01:00
|
|
|
nano configuration file ``~/.nanorc``. For example::
|
2010-07-29 00:15:43 +02:00
|
|
|
|
|
|
|
## C/C++
|
|
|
|
include "~/.nano/c.nanorc"
|
|
|
|
|
2013-12-20 07:05:51 +01:00
|
|
|
You can also append the contents of ``~/.nano/nanorc`` into your
|
|
|
|
``~/.nanorc`` to include all languages::
|
|
|
|
|
|
|
|
cat ~/.nano/nanorc >> ~/.nanorc
|
2015-12-15 04:05:43 +01:00
|
|
|
|
|
|
|
Finally, you can run an automatic installer using the following code::
|
|
|
|
|
2016-10-14 00:46:08 +02:00
|
|
|
$ curl https://raw.githubusercontent.com/scopatz/nanorc/master/install.sh | sh
|
|
|
|
|
|
|
|
or alternatively::
|
|
|
|
|
2016-10-14 00:23:41 +02:00
|
|
|
$ wget https://raw.githubusercontent.com/scopatz/nanorc/master/install.sh -O- | sh
|