Skip to content

Instantly share code, notes, and snippets.

@caroman
Created June 30, 2015 12:34
Show Gist options
  • Save caroman/3befc7958a9a8a83d93f to your computer and use it in GitHub Desktop.
Save caroman/3befc7958a9a8a83d93f to your computer and use it in GitHub Desktop.
My VIMRC conf file
execute pathogen#infect()
set encoding=utf8
set paste
set expandtab
set textwidth=80
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set backspace=indent,eol,start
set incsearch
set ignorecase
set ruler
set wildmenu
set commentstring =\ #\ %s
"set foldlevel=0
set clipboard+=unnamed
syntax on
colorscheme evening
filetype on " enables filetype detection
filetype plugin on " enables filetype specific plugins
"if !exists("autocommands_loaded")
" let autocommands_loaded = 1
" autocmd BufRead,BufNewFile,FileReadPost *.py source ~/.vim/python
"endif
" This beauty remembers where you were the last time you edited the file, and
" returns to the same position.
au BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif
let g:gitgutter_enabled = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment