MW

Tag ini

Recent Posts

syntax highlighting for *.ini files in nano (February 27, 2011)

Use the snippet below in your ~/.nanorc or /etc/nanorc file to highlight *.ini files like php.ini in Nano.

    # ini highlighting
    syntax "ini" "\.ini(\.old|~)?$"
     
    # values
    color brightred "=.*$"
    # equal sign
    color green "="
    # numbers
    color brightblue "-?[0-9\.]+\s*($|;)"
    # ON/OFF
    color brightmagenta "ON|OFF|On|Off|on|off\s*($|;)"
    # sections
    color brightcyan "^\s*\[.*\]"
    # keys
    color cyan "^\s*[a-zA-Z0-9_\.]+"
    # comments
    color brightyellow ";.*$"

continue reading...

Syntax Highlighting in Nano (August 04, 2009)

When I’m messing around with config files on the command line my editor of choice is Nano. It’s simple, fast and pretty much straight forward. You don’t have to learn any commands and can use keyboard shortcuts just like in GUI programs.

Settings

Today I had a look on the project website and saw that there are tons of settings which I really missed before. Just have a look into your /etc/nanorc for a default config file with all settings and their default values. Here are those I like most:

  • smooth (scrolling)
  • autoindent
  • mouse (though I use it rarely)
  • smarthome
  • tabsize (8 is far to much, I love 4)

Syntax Highlighting

Yes! Nano supports syntax highlighting! And I never knew it, but heck - it’s never to late. Not for neat features like this one, though I really wonder why this is not activated by default…

In the aforementioned /etc/nanorc are already some default languages which just wait to be commented out. You might also want to have a look into /usr/share/nano, there are some languages you can include in your nanorc file with:

continue reading...