红联Linux门户
Linux帮助

.vimrc & .bashrc文件配置

发布时间:2015-09-01 15:32:02来源:linux网站作者:Funsion Wu

/* 如果vim还没有语法高亮,那么在/etc/profile 中添加以下语句 */
export TERM=xterm-color
// 注: 只对各个用户自己的主目录下的.vimrc修改的话,修改内容只对本用户有效,要想全部有效,可以修改 /etc/vimrc ,同样的 /etc/bashrc 是针对所有用户的启动文件

/* 以下是 ~/.vimrc 文件的内容 */
set nonumber    "不设置行号
set shell=/bin/bash        "设置shell环境
syntax on        "开启vim语法高亮
colorscheme desert        "设置主题色
set background=dark
set autoindent        "设置自动缩进
set nocompatible        "不向下兼容vi
set showmatch         "开启括号匹配
"set cursorline        "光标所在行高亮
set ruler        "设置标尺
set laststatus=2        "开启状态栏(默认是1)
set smartindent        "开启新航时使用智能自动缩进
set hlsearch        "搜索时高亮显示找到的文本   
set wrap        "设置自动换行
set tabstop=4        "设置缩进为4个空格
set softtabstop=4
set shiftwidth=4
filetype on        "检测文件类型
set history=500        "设置历史行数
set smartindent        "理想添加 依据上面的格式自动对齐

ls /usr/share/vim/vim72/colors/        可以查看vim支持的主题色

/* 目录配色方案(将/etc中的DIR_COLORS文件复制到自己主目录中,并重命名为.dir_colors) */
cp /etc/DIR_COLORS ~/.dir_colors

/* PS1 用户主提示符配色方案(在 .bashrc 文件中添加) */
export PS1="\[\e[0;36m\]\u\[\e[m\]@\[\e[0;32m\]\h: \[\e[0;35m\]\W\[\e[m\] \\$  "
// 另外种等效写法
# PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h: \[\033[35m\]\W\[\033[m\] \\$  "
# export PS1

// 另外种主提示符样式(对CentOS默认的主提示符加颜色标识)
# export PS1="[\[\e[0;36m\]\u\[\e[m\]@\[\e[0;32m\]\h \[\e[0;35m\]\W\[\e[m\]]\\$  "

/* .bashrc 文件中个人习惯的别名命令 */
alias cls='clear'   #DOS风格的清空
alias h='history | tail'
alias hg='history | grep'
alias hl='history | less'
stty erase ^H        #清除退格 (这个很有必要)

/*  /etc/profile 文件设置 */
export PATH=$PATH:/opt/perl/site/bin:/opt/perl/bin


Ubuntu主目录下.bashrc文件备份:http://www.linuxdiyf.com/linux/5532.html

Redhat Linux /etc/profile与/etc/bashrc的区别:http://www.linuxdiyf.com/linux/13660.html

linux误删~/.bashrc解决办法:http://www.linuxdiyf.com/linux/13485.html

vim配置文件~/.vimrc:http://www.linuxdiyf.com/linux/12888.html

Ubuntu vimrc配置文件存放:http://www.linuxdiyf.com/linux/653.html