forked from askunix/VimForCpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bashrc
48 lines (36 loc) · 1.03 KB
/
bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
alias rm="rm -i"
alias mv="mv -i"
alias grephc="grep --include *.cc --include *.h --color"
alias grepcc="grep --include *.cc --color"
# alias gcc="/usr/local/gcc6/bin/gcc"
# alias g++="/usr/local/gcc6/bin/g++"
alias cl="clear"
# 需要安装 gdbgui
# pip install gdbgui
alias gdbgui="gdbgui --host 0.0.0.0 --port 9090"
# 需要安装 neovim
# yum -y install epel-release
# yum install neovim
# yum install python2-neovim.noarch
alias vi="nvim"
alias vim="nvim"
#ulimit -c unlimited
export SVN_EDITOR=vim
export TERM="screen-256color"
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH