diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-12-13 11:18:36 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-12-13 11:18:36 -0800 |
commit | f694923817d0470dae5d96d72d0008493f99ab11 (patch) | |
tree | 2fc436bd3c5ac7bc164e3709f5ad12e30d1b1cd8 | |
parent | [bin] Add a script to render markdown to HTML. (diff) | |
download | emacs.d-f694923817d0470dae5d96d72d0008493f99ab11.tar.gz |
[bash] Set editor to vim and new alias for ctags.
Diffstat (limited to '')
-rwxr-xr-x | bashrc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bashrc b/bashrc index b46ea6c..6284daa 100755 --- a/bashrc +++ b/bashrc @@ -1,4 +1,4 @@ -export EDITOR="emacsclient -a ''" +export EDITOR=vim export HISTFILE= export LANG="en_US.UTF-8" export LC_ALL="$LANG" @@ -30,6 +30,7 @@ alias aud="aurora_admin" alias g="git" alias gonest="ssh nest" alias t="time" +alias tags="ctags -R ." alias tm="tmux attach 2>/dev/null || tmux new" # finally, build the path and source a few files |