nnn/config.def.h

13 lines
272 B
C
Raw Normal View History

#define CWD "cwd: "
#define CURSR " > "
#define EMPTY " "
2014-10-21 10:15:27 +00:00
struct assoc assocs[] = {
2014-10-21 11:07:20 +00:00
{ "\\.(avi|mp4|mkv|mp3|ogg|flac)$", "mplayer" },
2014-10-21 10:15:27 +00:00
{ "\\.(png|jpg|gif)$", "feh" },
{ "\\.(html|svg)$", "firefox" },
{ "\\.pdf$", "mupdf" },
{ "\\.sh$", "sh" },
{ ".*", "less" },
};