Created
May 4, 2015 05:59
-
-
Save mankyKitty/bb045c837cd90a3ec986 to your computer and use it in GitHub Desktop.
vimrc dot file baseline.
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
python from powerline.vim import setup as powerline_setup | |
python powerline_setup() | |
python del powerline_setup | |
set nowrap | |
set wildmode=list:longest | |
" Change cursor in iTerm on insert | |
" let &t_SI = "\<Esc>]50;CursorShape=1\x7" | |
" let &t_EI = "\<Esc>]50;CursorShape=0\x7" | |
execute pathogen#infect() | |
syntax on | |
filetype on | |
filetype plugin indent on | |
" Tabstop size | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set smarttab | |
set expandtab | |
set completeopt=longest,menuone | |
let mapleader = "," |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment