linux vim 无插件,无插件定制vim开发环境基本版

" See: http://vimdoc.sourceforge.net/htmldoc/options.html for details

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

"=> General

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

"设定 gvim 运行在增强模式下,不使用vi的键盘模式

set nocompatible

"设置支持多语言,解决乱码

"设置内部编码为utf-8

set encoding=utf-8

set termencoding=utf-8

set fileencodings=utf-8,gbk,default,latin1

"解决consle输出乱码

language messages zh_CN.utf-8

"帮助菜单语言

set helplang=cn

" Sets how many lines of history VIM has to remember

set history=700

" Enable filetype plugins

filetype on

filetype plugin on

filetype indent on

" Set to auto read when a file is changed from the outside

set autoread

" With a map leader it's possible to do extra key combinations

" like w saves the current file

let mapleader = ","

let g:mapleader = ","

" Fast saving

nmap w :w!

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" => VIM user interface

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

"Set 7 lines to the cursor - when moving vertically using j/k

"光标离上下边界7行时开始滚屏

set so=7

" Turn on the Wild menu

set wildmenu

" Ignore compiled files

set wildignore=*.o,*~,*.pyc

if has("win16") || has("win32")

set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store

else

set wildignore+=.git\*,.hg\*,.svn\*

endif

" Height of the command bar

set cmdheight=2

" Configure backspace so it acts as it should act

set backspace=eol,start,indent

set whichwrap+=,h,l

" Ignore case when searching

set ignorecase

" When searching try to be smart about cases

set smartcase

" Highlight search results

set hlsearch

" Makes search act like search in modern browsers

set incsearch

" Following line clears the search highlights when pressing Lb

nnoremap / :nohlsearch

"Don't redraw while executing macros (good performance config)

set lazyredraw

" For regular expressions turn magic on

set magic

" Show matching brackets when text indicator is over them

set showmatch

" How many tenths of a second to blink when matching brackets

set mat=2

" No annoying sound on errors

set noerrorbells

set novisualbell

set t_vb=

set tm=500

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" => Colors and Fonts

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" Enable syntax highlighting

syntax enable

try

colorscheme desert

catch

endtry

set background=dark

" Set extra options when running in GUI mode

if has("gui_running")

set guioptions-=T

set guioptions+=e

set t_Co=256

set guitablabel=%M\ %t

endif

" Use Unix as the standard file type

set ffs=unix,dos,mac

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" => Files, backups and undo

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" Turn backup off, since most stuff is in SVN, git et.c anyway...

set nobackup

set nowb

set noswapfile

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" => Text, tab and indent related

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" Use spaces instead of tabs

set expandtab

" Be smart when using tabs ;)

set smarttab

"对于不同类型的文件,进行自定义设置

au FileType html,python,vim,javascript,css setl shiftwidth=2

au FileType html,python,vim,javascript,css setl tabstop=2

au FileType java,php setl shiftwidth=4

au FileType java,php setl tabstop=4

"设置每行的最大字符数,超过的话,将换行

set textwidth=80

" Linebreak on 500 characters

set lbr

set tw=500

set ai    "Auto indent

set si    "Smart indent

set wrap  "Wrap lines

""""""""""""""""""""""""""""""

" => Visual mode related

""""""""""""""""""""""""""""""

" Visual mode pressing * or # searches for the current selection

" Super useful! From an idea by Michael Naumann

"vnoremap  * :call VisualSelection('f')

"vnoremap  # :call VisualSelection('b')

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" => Moving around, tabs, windows and buffers

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" Treat long lines as break lines (useful when moving around in them)

map j gj

map k gk

" Moving Between Windows

nnoremap h h

nnoremap l l

nnoremap j j

nnoremap k k

nnoremap wo o

nnoremap wv vl

nnoremap ws s

nnoremap ww 

""""""""""""""""""""""""""""""

" => Status line

""""""""""""""""""""""""""""""

" Always show the status line

set laststatus=2

" Format the status line

set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ \ \ \ \line:\%-14.(%l,%c%V%)\ %P

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" => Editing mappings

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" Remap VIM 0 to first non-blank character

map 0 ^

" type S, then type what you're looking for, a /, and what to replace it with

nmap S :%s/\>//g

vmap S :s/\>//g

inoremap ( ()i

inoremap ) =ClosePair(')')

inoremap [ []i

inoremap ] =ClosePair(']')

imap { {}

inoremap } =ClosePair('}')

"基本编辑器设置

set number          "显示行号

set laststatus=2    "显示状态栏 (默认值为 1, 无法显示状态栏)

set cmdheight=1     "设定命令行的行数为 1

set showtabline=2   "显示tab标签

set tabline+=%f     "tab标签

" Enable Code Folding

set foldenable

set foldmethod=syntax

set mouse=a         "任何情况都可以使用鼠标

"工作目录随文件变

autocmd BufEnter * cd %:p:h

"不显示工具条

set guioptions-=T

" 配置文件.vimrc更改后自动重新载入使设置生效

autocmd! bufwritepost .vimrc source ~/.vimrc

"设置重新载入.vimrc快捷键

map  ss :source ~/.vimrc

" 设置快速编辑.vimrc快捷键

map  ee :e ~/.vimrc

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

" => Helper functions

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

function! ClosePair(char)

if getline('.')[col('.') - 1] == a:char

return "\"

else

return a:char

endfunction

function! HasPaste()

if &paste

return 'PASTE MODE '

en

return ''

endfunction

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值