History bug fix.
[AurShell.git] / conf.py
blob856550ad0b5c7efab016e11bea56376df17ba573
1 #!/usr/bin/python
2 # -*- coding: utf-8-*-
4 """
5 Configuration file
6 """
8 from colors import *
9 import os
10 import os.path
12 alias = {
13 "h" : "history ",
14 "up" : "pacman -Suy ",
15 "p -Ss" : "pacman -Ss ",
16 "p -Suy" : "pacman -Suy ",
17 "Ss" : "search ",
18 "s" : "pacman -Ss ",
19 "info" : "help ",
23 modules_path = os.path.join(os.getcwd(), "plugin/")
24 history_file = os.path.join(os.path.expanduser("~"), ".aurshell_history")
25 history_length = 500
26 shell_prompt = color["BLUE"] + " [ " + color["WHITE"] + "aurshell" + \
27 color["BLUE"] + " ] " + color["none"]