Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dotfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gerhard Gonter
dotfiles
Commits
82cdd647
Commit
82cdd647
authored
5 years ago
by
Gerhard Gonter
Browse files
Options
Downloads
Patches
Plain Diff
added config for interactiv python
parent
1fb78486
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.login
+2
-0
2 additions, 0 deletions
.login
.pythonrc
+9
-0
9 additions, 0 deletions
.pythonrc
with
11 additions
and
0 deletions
.login
+
2
−
0
View file @
82cdd647
...
@@ -13,6 +13,8 @@ setenv EDITOR `which vi`
...
@@ -13,6 +13,8 @@ setenv EDITOR `which vi`
setenv LC_ALL en_US.UTF-8
setenv LC_ALL en_US.UTF-8
setenv LESSCHARSET utf-8
setenv LESSCHARSET utf-8
setenv PYTHONSTARTUP ~/.pythonrc
if (-x ~/.login.local) then
if (-x ~/.login.local) then
source ~/.login.local
source ~/.login.local
endif
endif
...
...
This diff is collapsed.
Click to expand it.
.pythonrc
0 → 100644
+
9
−
0
View file @
82cdd647
# ~/.pythonrc
# enable syntax completion
try:
import readline
except ImportError:
print("Module readline not available.")
else:
import rlcompleter
readline.parse_and_bind("tab: complete")
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment