Alias bugfix.
[AurShell.git] / conf.py
blobfbfcdff845536b76c773d68b99c65ef051ddd0f5
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 "up" : "pacman -Suy ",
14 "p -Ss" : "pacman -Ss ",
15 "p -Suy" : "pacman -Suy ",
16 "Ss" : "search ",
17 "s" : "pacman -Ss ",
18 "info" : "help ",
22 modules_path = os.path.join(os.getcwd(), "plugin/")
23 history_file = os.path.join(os.path.expanduser("~"), ".aurshell_history")
24 history_length = 500
25 shell_prompt = color["BLUE"] + " [ " + color["WHITE"] + "aurshell" + \
26 color["BLUE"] + " ] " + color["none"]