dotvim/.vim/options.vim

75 lines
1.2 KiB
VimL
Raw Normal View History

2015-03-09 04:01:03 +00:00
set nocompatible
filetype indent plugin on
2019-05-02 17:16:02 +00:00
colorscheme base16-default-dark
syntax enable
2019-01-20 21:09:18 +00:00
set autoindent
set autoread
set autowrite
2015-04-18 00:57:46 +00:00
set background=dark
set backspace=indent,eol,start
2019-01-20 21:09:18 +00:00
set complete-=i
set completeopt=longest,menuone,noinsert
set encoding=utf-8
set expandtab
set fileformats=unix,dos,mac
2019-04-25 23:04:46 +00:00
set guicursor=n:blinkon0
2015-01-30 09:48:50 +00:00
set hidden
2015-03-21 12:26:20 +00:00
set history=1000
set hlsearch
2019-06-10 15:27:00 +00:00
set ignorecase
set incsearch
set laststatus=2
set linebreak
2019-06-19 21:01:26 +00:00
set modelines=0
set mousemodel=popup
set nobackup
set nofoldenable
2019-06-19 21:01:26 +00:00
set nomodeline
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
2019-01-20 21:09:18 +00:00
set ruler
set scrolloff=5
2015-04-18 00:50:16 +00:00
set shiftround
set shiftwidth=4
2019-05-02 20:45:04 +00:00
set sidescroll=1
2019-06-08 23:31:17 +00:00
set smartcase
set smarttab
set tabstop=4
2019-01-20 21:09:18 +00:00
set ttimeout
set ttimeoutlen=100
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
2019-04-29 14:52:29 +00:00
if has('unix')
2019-08-04 19:58:50 +00:00
set guifont=Source\ Code\ Pro\ Regular\ 10
2019-04-29 14:52:29 +00:00
else
2020-08-02 03:51:05 +00:00
set guifont=Lucida_Console:h10
2019-04-29 14:52:29 +00:00
endif
endif
if has('unix')
2019-05-08 03:10:23 +00:00
set termguicolors
set t_Co=256
endif
2015-01-30 07:30:09 +00:00
if &shell =~ 'bin/fish'
set shell=/bin/sh
endif