dotvim/.vim/options.vim

65 lines
1015 B
VimL
Raw Normal View History

2015-03-09 04:01:03 +00:00
set nocompatible
filetype indent plugin on
2015-01-29 10:57:53 +00:00
colorscheme molokai
syntax enable
set autochdir
set autoread
set autowrite
2015-04-18 00:57:46 +00:00
set background=dark
set backspace=indent,eol,start
set completeopt-=preview
2015-04-18 00:50:16 +00:00
set cursorline
set encoding=utf-8
set expandtab
set fileformats=unix,dos,mac
2015-04-17 14:27:43 +00:00
set gdefault
2015-01-30 09:48:50 +00:00
set hidden
2015-03-21 12:26:20 +00:00
set history=1000
set hlsearch
2015-01-30 09:48:50 +00:00
set ignorecase
set incsearch
set laststatus=2
set linebreak
2015-04-14 06:05:19 +00:00
set mouse=
set mousemodel=popup
set nobackup
set nofoldenable
set noswapfile
set nowrap
2015-03-21 12:26:20 +00:00
set nrformats-=octal
set number
2015-03-09 04:01:03 +00:00
set relativenumber
set scrolloff=5
2015-04-18 00:50:16 +00:00
set shiftround
set shiftwidth=4
set shortmess+=I
set smartcase
2015-01-30 09:24:36 +00:00
set smartcase
set smarttab
2015-04-18 00:50:16 +00:00
set t_Co=246
set tabstop=4
2015-04-17 14:27:43 +00:00
set ttyfast
set wildmenu
set wrapmargin=1
if has('gui_running')
set columns=150
set guioptions-=L
set guioptions-=R
set guioptions-=T
set guioptions-=l
set guioptions-=m
set guioptions-=r
set lines=50
2015-03-12 11:27:59 +00:00
if has('unix')
set guifont=Terminus\ 12
endif
endif
2015-01-30 07:30:09 +00:00
if &shell =~ 'bin/fish'
set shell=/bin/sh
endif