Created
October 2, 2011 17:48
-
-
Save jamztang/1257694 to your computer and use it in GitHub Desktop.
.vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" File: _vimrc | |
" Version: 1 | |
" Author: Seth Mason | |
" Created: 19 Nov 2003 10:20:19 | |
" Last-modified: 18 May 2010 10:54:38 | |
" All my Vim commands for the taking | |
" Works on cygwin but not very well on unix machines...still trying to figure | |
" it out | |
" Use Vim settings, rather then Vi settings (much better!). | |
set nocompatible | |
" Turn on the verboseness to see everything vim is doing. | |
"set verbose=9 | |
" allow backspacing over everything in insert mode | |
set backspace=indent,eol,start | |
" I like 4 spaces for indenting | |
set shiftwidth=4 | |
" I like 4 stops | |
set tabstop=4 | |
" Spaces instead of tabs | |
"set expandtab | |
" Always set auto indenting on | |
set autoindent | |
" select when using the mouse | |
set selectmode=mouse | |
" set the commandheight | |
set cmdheight=2 | |
" do not keep a backup files | |
set nobackup | |
set nowritebackup | |
" Set 52 lines for the display, 1 for the status line. | |
" and other display options | |
if has('gui_running') | |
" i like about 80 character width lines | |
set textwidth=78 | |
" 2 for the command line | |
set lines=52 | |
" add columns for the Project plugin | |
set columns=110 | |
" enable use of mouse | |
set mouse=a | |
endif | |
" just enable scroll | |
set mouse=a | |
" keep 50 lines of command line history | |
set history=50 | |
" show the cursor position all the time | |
set ruler | |
" show (partial) commands | |
set showcmd | |
" do incremental searches (annoying but handy); | |
set incsearch | |
" Show tab characters. Visual Whitespace. | |
set list | |
set listchars=tab:>. | |
" Set ignorecase on | |
set ignorecase | |
" smart search (override 'ic' when pattern has uppers) | |
set scs | |
" Set 'g' substitute flag on | |
" set gdefault | |
" Set status line | |
set statusline=[%02n]\ %f\ %(\[%M%R%H]%)%=\ %4l,%02c%2V\ %P%* | |
" Always display a status line at the bottom of the window | |
set laststatus=2 | |
" Set vim to use 'short messages'. | |
" set shortmess=a | |
" Insert two spaces after a period with every joining of lines. | |
" I like this as it makes reading texts easier (for me, at least). | |
set joinspaces | |
" showmatch: Show the matching bracket for the last ')'? | |
set showmatch | |
" allow tilde (~) to act as an operator -- ~w, etc. | |
set notildeop | |
" Java specific stuff | |
let java_highlight_all=1 | |
let java_highlight_debug=1 | |
let java_ignore_javadoc=1 | |
let java_highlight_functions=1 | |
let java_mark_braces_in_parens_as_errors=1 | |
" highlight strings inside C comments | |
let c_comment_strings=1 | |
" Commands for :Explore | |
let g:explVertical=1 " open vertical split winow | |
let g:explSplitRight=1 " Put new window to the right of the explorer | |
let g:explStartRight=0 " new windows go to right of explorer window | |
" for the TOhtml command | |
let html_use_css=1 | |
if has("gui") | |
" set the gui options to: | |
" g: grey inactive menu items | |
" m: display menu bar | |
" r: display scrollbar on right side of window | |
" b: display scrollbar at bottom of window | |
" t: enable tearoff menus on Win32 | |
" T: enable toolbar on Win32 | |
set go=gmr | |
set guifont=Courier | |
endif | |
" Switch syntax highlighting on, when the terminal has colors | |
" Also switch on highlighting the last used search pattern. | |
if &t_Co > 2 || has("gui_running") | |
syntax on | |
set hlsearch | |
endif | |
" for cygwin | |
"set shell=C:/cygwin/bin/bash | |
"set shellcmdflag=--login\ -c | |
"set shellxquote=\" | |
" ************************************************************************ | |
" C O M M A N D S | |
" | |
"switch to directory of current file | |
command! CD cd %:p:h | |
" ************************************************************************ | |
" K E Y M A P P I N G S | |
" | |
map <Leader>e :Explore<cr> | |
map <Leader>s :Sexplore<cr> | |
" pressing < or > will let you indent/unident selected lines | |
vnoremap < <gv | |
vnoremap > >gv | |
" Don't use Ex mode, use Q for formatting | |
map Q gq | |
" Make p in Visual mode replace the selected text with the "" register. | |
vnoremap p <Esc>:let current_reg = @"<CR>gvs<C-R>=current_reg<CR><Esc> | |
" Make tab in v mode work like I think it should (keep highlighting): | |
vmap <tab> >gv | |
vmap <s-tab> <gv | |
" map ,L mz1G/Last modified:/e<Cr>CYDATETIME<Esc>`z | |
map ,L :let @z=TimeStamp()<Cr>"zpa | |
map ,datetime :let @z=strftime("%d %b %Y %X")<Cr>"zpa | |
map ,date :let @z=strftime("%d %b %Y")<Cr>"zpa | |
" Map <c-s> to write current buffer. | |
map <c-s> :w<cr> | |
imap <c-s> <c-o><c-s> | |
imap <c-s> <esc><c-s> | |
" Buffer naviation | |
map <M-Left> :bprevious<CR> | |
map <M-Right> :bnext<CR> | |
" Select all. | |
map <c-a> ggVG | |
" Undo in insert mode. | |
imap <c-z> <c-o>u | |
" Load my color scheme | |
"colorscheme slack | |
"colorscheme midnight | |
set number | |
" GUI ONLY type stuff. | |
if has("gui") | |
:menu &MyVim.Current\ File.Convert\ Format.To\ Dos :set fileformat=dos<cr> :w<cr> | |
:menu &MyVim.Current\ File.Convert\ Format.To\ Unix :set fileformat=unix<cr> :w<cr> | |
:menu &MyVim.Current\ File.Remove\ Trailing\ Spaces\ and\ Tabs :%s/[ ]*$//g<cr> | |
:menu &MyVim.Current\ File.Remove\ Ctrl-M :%s/^M//g<cr> | |
:menu &MyVim.Current\ File.Remove\ All\ Tabs :retab<cr> | |
:menu &MyVim.Current\ File.To\ HTML :runtime! syntax/2html.vim<cr> | |
" these don't work for some reason | |
":amenu &MyVim.Insert.Date<Tab>,date <Esc><Esc>:,date<Cr> | |
":amenu &MyVim.Insert.Date\ &Time<Tab>,datetime <Esc><Esc>:let @z=YDATETIME<Cr>"zpa | |
:amenu &MyVim.Insert.Last\ &Modified<Tab>,L <Esc><Esc>:let @z=TimeStamp()<CR>"zpa | |
:amenu &MyVim.-SEP1- <nul> | |
:amenu &MyVim.&Global\ Settings.Toggle\ Display\ Unprintables<Tab>:set\ list! :set list!<CR> | |
:amenu &MyVim.-SEP2- <nul> | |
:amenu &MyVim.&Project :Project<CR> | |
" hide the mouse when characters are typed | |
set mousehide | |
endif | |
" ************************************************************************ | |
" A B B R E V I A T I O N S | |
" | |
abbr #b /************************************************************************ | |
abbr #e ************************************************************************/ | |
abbr hosts C:\WINNT\system32\drivers\etc\hosts | |
" abbreviation to manually enter a timestamp. Just type YTS in insert mode | |
iab YTS <C-R>=TimeStamp()<CR> | |
" Date/Time stamps | |
" %a - Day of the week | |
" %b - Month | |
" %d - Day of the month | |
" %Y - Year | |
" %H - Hour | |
" %M - Minute | |
" %S - Seconds | |
" %Z - Time Zone | |
iab YDATETIME <c-r>=strftime(": %a %b %d, %Y %H:%M:%S %Z")<cr> | |
" ************************************************************************ | |
" F U N C T I O N S | |
" | |
" first add a function that returns a time stamp in the desired format | |
if !exists("*TimeStamp") | |
fun TimeStamp() | |
return "Last-modified: " . strftime("%d %b %Y %X") | |
endfun | |
endif | |
" searches the first ten lines for the timestamp and updates using the | |
" TimeStamp function | |
if !exists("*UpdateTimeStamp") | |
function! UpdateTimeStamp() | |
" Do the updation only if the current buffer is modified | |
if &modified == 1 | |
" go to the first line | |
exec "1" | |
" Search for Last modified: | |
let modified_line_no = search("Last-modified:") | |
if modified_line_no != 0 && modified_line_no < 10 | |
" There is a match in first 10 lines | |
" Go to the : in modified: | |
exe "s/Last-modified: .*/" . TimeStamp() | |
endif | |
endif | |
endfunction | |
endif | |
filetype plugin indent on | |
" classname (the filename minus the path and extension) | |
iab <buffer> <unique> ,f <c-r>=fnamemodify(getreg('%'), ':r')<CR> | |
if has("autocmd") | |
autocmd Filetype java setlocal omnifunc=javacomplete#Complete | |
endif | |
"Check to see if the filetype was automagically identified by Vim | |
au! BufRead,BufNewFile *.j setfiletype objc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment