Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- " Don't try to be vi compatible
- set nocompatible
- " Turn on syntax highlighting
- syntax on
- " For plugins to load correctly
- filetype plugin indent on
- " Show line numbers
- set number
- " Show file stats
- set ruler
- " Blink cursor on error instead of beeping (grr)
- set visualbell
- " Encoding
- set encoding=utf-8
- " Whitespace
- set wrap
- set textwidth=79
- set formatoptions=tcqrn1
- set tabstop=4
- set softtabstop=4
- set expandtab
- set noshiftround
- set autoindent
- # Auto-indent new lines
- set shiftwidth=4
- # Number of auto-indent spaces
- set smartindent
- # Enable smart-indent
- set smarttab
- # Enable smart-tabs
- set softtabstop=4
- # Number of spaces per Tab
- " Cursor motion
- set scrolloff=3
- set backspace=indent,eol,start
- " Rendering
- set ttyfast
- " Status bar
- set laststatus=2
- " Last line
- set showmode
- set showcmd
- " Searching
- set hlsearch
- set incsearch
- set ignorecase
- set smartcase
- set showmatch
- " Visualize tabs and newlines
- set listchars=tab:▸\ ,eol:¬
- " Color scheme (terminal)
- set t_Co=256
- set background=dark
- let g:solarized_termcolors=256
- let g:solarized_termtrans=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement