Created
February 23, 2010 20:41
-
-
Save jkk/312679 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| set noswapfile | |
| set nowrap | |
| au BufRead,BufNewFile *.txt setlocal wrap " enable wrap for textfiles | |
| set linebreak | |
| set number | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set softtabstop=4 | |
| set expandtab | |
| set smarttab | |
| set autoindent | |
| :syntax on | |
| :colorscheme beauty256 | |
| :set ignorecase | |
| :set smartcase | |
| :map <A-1> 1gt | |
| :map <A-2> 2gt | |
| :map <A-3> 3gt | |
| :map <A-4> 4gt | |
| :map <A-5> 5gt | |
| :map <A-6> 6gt | |
| :map <A-7> 7gt | |
| :map <A-8> 8gt | |
| :map n :tabnew<CR> | |
| :map c :tabc<CR> | |
| :map f :FuzzyFinderTextMate<CR> | |
| :map t :NERDTree<CR> | |
| :map <C-j> 5j | |
| :map <C-k> 5k | |
| autocmd FileType php set omnifunc=phpcomplete#CompletePHP | |
| set cot+=menuone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment