dotvim/.vim/options.vim

68 lines
1.0 KiB
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 autoread
set autowrite
2015-04-18 00:57:46 +00:00
set background=dark
set backspace=indent,eol,start
set completeopt-=preview
set encoding=utf-8
set expandtab
set fileformats=unix,dos,mac
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
2016-10-09 02:34:31 +00:00
set nowritebackup
2015-03-21 12:26:20 +00:00
set nrformats-=octal
set number
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
set tabstop=4
2015-04-17 14:27:43 +00:00
set ttyfast
set wildignore+=*/tmp/*
set wildmenu
if has('gui_running')
2018-04-01 15:55:05 +00:00
set columns=128
set lines=32
2015-04-18 04:18:42 +00:00
set guioptions-=L
set guioptions-=R
set guioptions-=T
set guioptions-=l
set guioptions-=m
set guioptions-=r
2016-05-27 16:52:41 +00:00
if has('win32')
2017-05-06 17:59:33 +00:00
set guifont=Lucida_Console:h12
else
set guifont=Monospace\ 12
2016-05-27 16:52:41 +00:00
endif
endif
if has('unix')
set t_Co=256
endif
2015-01-30 07:30:09 +00:00
if &shell =~ 'bin/fish'
set shell=/bin/sh
endif