码迷,mamicode.com
首页 > 系统相关 > 详细

【vim配置】.vimrc

时间:2014-12-24 18:32:22      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:vim

【vim配置】.vimrc

set nocompatible
set enc=utf-8
"-show line number
"set number
"-enable filetype plugin
filetype plugin on
set history=500
syntax on
set autoindent
set smartindent
"-show brackets match
set showmatch
"-show status
set ruler
"-close highline match
"set nohls
"-enable quick search
set incsearch
"-enable paste mode
set paste
"set tabstop=4
set ts=4
"set shiftwidth=4
set sw=4
"set expandtab
set et

if has("autocmd")
filetype plugin indent on
endif
autocmd filetype python setlocal et sta sw=4 sts=4
"-smart append title by file type
func SetTitle()
if &filetype == ‘sh‘
call setline(1, "\#!/bin/bash")
call append(line("."), "\# ")
call append(line(".")+1, "")
else
call setline(1, "\#!/usr/local/bin/python3")
call append(line("."), "\# ")     
call append(line(".")+1, "")
endif
endfunc

autocmd BufNewFile *.py,*.sh exec ":call SetTitle()"
"-go to the end of file
autocmd BufNewFile * normal G
"-press F2 to delete empty line
nnoremap <F2> :g/^\s*$/d<CR>


【vim配置】.vimrc

标签:vim

原文地址:http://nosmoking.blog.51cto.com/3263888/1594836

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!