Created
March 12, 2009 16:29
-
-
Save anonymous/78148 to your computer and use it in GitHub Desktop.
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
color ir_black | |
set autochdir | |
syntax on | |
set hlsearch | |
set wildmenu | |
set wildmode=longest:full | |
set incsearch | |
filetype plugin on | |
set ruler | |
set laststatus=2 | |
set number | |
set history=50 | |
set scrolloff=5 | |
set tags+=~/dev/tags | |
set smartcase | |
set ignorecase | |
set cursorline | |
set backspace=2 " Allow deleting past the start of an insert | |
set foldnestmax=1 " Only fold one level deep | |
set autoindent | |
set smartindent | |
"set guitablabel | |
"set guitabtooltip | |
set sts=2 | |
set sw=2 | |
set ts=2 | |
map <F1> <Esc>:tab help<cr> | |
map <F2> <Esc>:tabe ~/.vimrc<cr> | |
map <S-F2> <Esc>:source ~/.vimrc<cr> | |
map <F3> <Esc>:set foldmethod=indent<CR> | |
nmap Y 0y$ | |
map :wc :w<cr>:close | |
nnoremap <C-l> :noh<CR><C-l> | |
" NetRW Settings | |
" let g:netrw_browse_split=4 " Open file in last split when pressing <cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment