vim ~/.vimrc将下面的文件填写进去就好了
set nu
set tabstop=4
set nobackup
set expandtab
set autoindent
set bg=dark
syntax on
set mouse=a
filetype plugin indent on
set cindent shiftwidth=4
set ts=4
set sw=4
highlight WhitespaceEOL ctermbg=red guibg=red
match WhitespaceEOL /\s\+$/
set foldmethod=syntax
let loaded_matchpare=1
filetype plugin on
syntax on
au BufRead,BufNewFile *.go set filetype=go
set encoding=utf-8
set fileencodings=utf-8,chinese,latin-1
if has("win32")
set fileencoding=chinese
else
set fileencoding=utf-8
endif
"解决èœå•ä¹±ç
"source $VIMRUNTIME/delmenu.vim
"source $VIMRUNTIME/menu.vim
""解决consle输出乱ç
language messages zh_CN.utf-8
set mouse=a可以设置触摸板中移动鼠标
set paste,这个也是可以设置的,这个的作用是,设置我们从一个网页上面复制代码的时候,不会出现乱行的问题
设置ll显示目录颜色
在vim ~/.bashrc中加上这一行就好好了
alias ls='ls --color=auto'