dotfiles/system/.vimrc

28 lines
1.3 KiB
VimL

execute pathogen#infect('bundle/{}')
filetype plugin indent on " filetype detection[ON] plugin[ON] indent[ON]
set nocompatible " get rid of Vi compatibility mode. SET FIRST!
set t_Co=256 " enable 256-color mode.
colorscheme desert " set colorscheme
set number " show line numbers
set laststatus=2 " last window always has a statusline
filetype indent on " activates indenting for files
set nohlsearch " Don't continue to highlight searched phrases.
set incsearch " But do highlight as you type your search.
set ignorecase " Make searches case-insensitive.
set ruler " Always show info along bottom.
set autoindent " auto-indent
set tabstop=4 " tab spacing
set softtabstop=4 " unify
set shiftwidth=4 " indent/outdent by 4 columns
set shiftround " always indent/outdent to the nearest tabstop
set expandtab " use spaces instead of tabs
set smarttab " use tabs at the start of a line, spaces elsewhere
set nowrap " don't wrap text
set autoread "Reload files changed outside vim
syntax on
" swap, backup and undo directories
set backupdir=~/.vim/backup_files//
set directory=~/.vim/swap_files//
set undodir=~/.vim/undo_files//