-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
34 lines (30 loc) · 716 Bytes
/
.vimrc
File metadata and controls
34 lines (30 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# http://seohakim.blogspot.com/2015/02/mac-vim.html
# git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
# set nocompatible
# filetype off
# set rtp+=~/.vim/bundle/Vundle.vim
# call vundle#begin()
# Plugin 'gmarik/Vundle.vim' "required
# Plugin 'tpope/vim-fugitive' "required
# call vundle#end()
# filetype plugin indent on " Put your non-Plugin stuff after this line
# :w
# :source %
# :PluginInstall
" Syntax Highlighing
if has("syntax")
syntax on
endif
" Setting Base
set nu
set hlsearch
set scrolloff=2
set autoindent
set cindent
set ts=4 " Tab width
set shiftwidth=4 "width for autoindent
set paste
set showmatch
set ruler
map <C-C> :s:^:#<CR>
map <C-T> :s:^#<CR>