You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
301 B
Plaintext
11 lines
301 B
Plaintext
4 years ago
|
import os.path
|
||
|
import sys
|
||
|
xonsh_ext_dir = os.path.expanduser('~/.xonsh')
|
||
|
if os.path.isdir(xonsh_ext_dir):
|
||
|
sys.path.append(xonsh_ext_dir)
|
||
|
|
||
|
from history_couchdb import CouchDBHistory
|
||
|
$XONSH_HISTORY_BACKEND = CouchDBHistory
|
||
|
|
||
|
$PL_RPROMPT = '!' # recommended if you use powerline, as {history} is slow
|