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.
2017-04-23 22:16:19 +02:00
1. Copy files
~~~~~~
These should be placed inside of the `` ~/.nano/ `` directory.
Or for system-wide installation `` /usr/share/nano-syntax-highlighting/ `` .
In other words::
2013-12-20 07:05:51 +01:00
git clone git@github.com:scopatz/nanorc.git ~/.nano
2017-02-21 13:25:43 +01:00
2017-04-23 22:16:19 +02:00
*Note - if you have any issues (ssh was not properly configured), alternatively use::
2014-06-20 20:23:58 +02:00
git clone https://github.com/scopatz/nanorc.git ~/.nano
2017-04-23 22:16:19 +02:00
*System wide will look like so* ::
sudo git clone https://github.com/scopatz/nanorc.git /usr/share/nano-syntax-highlighting/
2014-06-20 20:23:58 +02:00
2018-05-08 22:38:59 +02:00
**NOTE** : \< and \> are regular character escapes on macOS. The bug's fixed in Nano, but this might be a problem
if you are using an older version. If this is the case, replace them respectively with [[:<:]] and [[:> :]].
This is reported in `issue 52 <https://github.com/scopatz/nanorc/issues/52> `_
2010-07-29 00:15:43 +02:00
2017-04-23 22:16:19 +02:00
2. Configure `` 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
2017-04-23 22:16:19 +02:00
Or to be less verbose, append content of the folder in one line with wildcard::
## For all users
$ echo "include $install_path/*.nanorc" >> /etc/nanorc
## For current user
$ echo "include $install_path/*.nanorc" >> ~/.nanorc
where `` $install_path `` is `` /usr/share/nano-syntax-highlighting `` or `` ~/.nano/ `` or ...
2017-02-21 13:25:43 +01:00
2017-04-23 22:16:19 +02:00
1a. Automatic installer
~~~~~~~~~~~~~~~~~~~~~~
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
2017-02-21 13:25:43 +01:00
*Note -
some syntax definitions which exist in Nano upstream may be preferable to the ones provided by this package.
The install.sh script may be run with `` -l `` or `` --lite `` to insert the included syntax definitions from this package
with lower precedence than the ones provided by the standard package.
2017-04-23 22:16:19 +02:00
1b. Distributive specific installation via package managers
~~~~~~~~~~
On **Arch Linux** and other *pacman/aur* based systems it is possible to::
2018-08-15 09:22:08 +02:00
$ aurman -S nano-syntax-highlighting-git
or search package::
$ aurman -Ss nano-syntax-highlight
2017-04-23 22:16:19 +02:00
Then you need to mannually add `` .nanorc `` -s to user's `` ~/.nanorc `` or system `` /etc/nanorc `` . See **$2**
2019-02-27 16:08:50 +01:00
Acknowledgement
~~~~~~~~~~
Some of these files are derived from the original nano release [`Project <https://www.nano-editor.org/> `_ ] [`Repository <https://git.savannah.gnu.org/cgit/nano.git> `_ ]