diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-01-21 01:56:23 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-01-21 01:56:23 -0500 |
commit | 5df4afa4c5e5a760bc33b4083d4d0b2ebbb1c85f (patch) | |
tree | cdb2423b0bd35b4b6e6184b055316a8ae5c1ac81 | |
parent | dd664776b292fadba61aec3dc7b9a02b869c646b (diff) |
Added .cshrc and .inputrc;
-rw-r--r-- | csh/.cshrc | 13 | ||||
-rw-r--r-- | input/.inputrc | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/csh/.cshrc b/csh/.cshrc new file mode 100644 index 0000000..0a6889c --- /dev/null +++ b/csh/.cshrc @@ -0,0 +1,13 @@ + +alias ls 'ls --color=auto' +alias ll 'ls -la' + +alias xcopy 'xclip -selection clipboard' +alias xpaste 'xclip -selection clipboard -o' + +set prompt='[%n@%m %c]> ' + +setenv MAIL "/var/spool/mail/tje" + +setenv EDITOR vi + diff --git a/input/.inputrc b/input/.inputrc new file mode 100644 index 0000000..96ed405 --- /dev/null +++ b/input/.inputrc @@ -0,0 +1,3 @@ +$include /etc/inputrc + +set editing-mode vi |