Created
June 2, 2017 15:22
-
-
Save jasonbekolay/77a7a21e5d0233e599e7e5c04e9ab90a 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 nocompatible | |
source $VIMRUNTIME/vimrc_example.vim | |
source $VIMRUNTIME/mswin.vim | |
behave mswin | |
set rtp-=$HOME\vimfiles | |
set rtp^=C:\Users\jbekol01\vimfiles | |
set dir=C:\Users\jbekol01\vimfiles\swaps | |
set backupdir=C:\Users\jbekol01\vimfiles\backups | |
filetype off | |
set wildignore+=*/tmp/*,*/node_modules/*,*/vendor/*,*/bower_components/*,*/dist/* | |
"'''''''''''''' VUNDLE '''''''''''''''''' | |
set rtp+=c:/Users/jbekol01/vimfiles/bundle/Vundle.vim/ | |
let path='c:/Users/jbekol01/vimfiles/bundle' | |
call vundle#begin(path) | |
" let Vundle manage Vundle, required | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'closetag.vim' | |
Plugin 'kien/ctrlp.vim' | |
let g:ctrlp_cache_dir='C:\Users\jbekol01\vimfiles\ctrlp_cache' | |
Plugin 'jlanzarotta/bufexplorer' | |
"https://github.com/mustache/vim-mustache-handlebars | |
Plugin 'mustache/vim-mustache-handlebars' | |
let g:mustache_abbreviations = 1 | |
call vundle#end() " required | |
filetype plugin indent on " required | |
"'''''''''''''' VUNDLE '''''''''''''''''' | |
set guifont=Consolas:h12:cANSI | |
set lines=44 columns=150 | |
colorscheme torte | |
nnoremap <C-S-tab> :tabprevious<CR> | |
nnoremap <C-tab> :tabnext<CR> | |
nnoremap <C-t> :tabnew<CR> | |
inoremap <C-S-tab> <Esc>:tabprevious<CR>i | |
inoremap <C-tab> <Esc>:tabnext<CR>i | |
inoremap <C-t> <Esc>:tabnew<CR> | |
set expandtab | |
set softtabstop=2 | |
set shiftwidth=2 | |
set tabstop=2 | |
set listchars=tab:->,trail:· | |
set list | |
set number | |
set encoding=utf-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment