dotvim/options.vim

61 lines
967 B
VimL
Raw Normal View History

2015-03-09 04:01:03 +00:00
set nocompatible
2020-10-31 00:42:42 +00:00
set termguicolors
set t_Co=16
2015-03-09 04:01:03 +00:00
filetype indent plugin on
colorscheme solarized8
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
2021-01-18 01:20:30 +00:00
set belloff=all
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
2021-01-18 01:20:30 +00:00
set formatoptions=tcqj
2019-04-25 23:04:46 +00:00
set guicursor=n:blinkon0
2015-01-30 09:48:50 +00:00
set hidden
2021-01-18 01:20:30 +00:00
set history=10000
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
2021-01-18 01:20:30 +00:00
set nofsync
set nolangremap
2019-06-19 21:01:26 +00:00
set nomodeline
set noswapfile
set nowrap
2016-10-09 02:34:31 +00:00
set nowritebackup
2021-01-18 01:20:30 +00:00
set nrformats=bin,hex
set number
2019-01-20 21:09:18 +00:00
set ruler
2021-01-18 01:20:30 +00:00
set ruler
set scrolloff=5
2015-04-18 00:50:16 +00:00
set shiftround
set shiftwidth=4
2021-01-18 01:20:30 +00:00
set showcmd
2019-05-02 20:45:04 +00:00
set sidescroll=1
2019-06-08 23:31:17 +00:00
set smartcase
set smarttab
2021-01-18 01:20:30 +00:00
set tabpagemax=50
set tabstop=4
2019-01-20 21:09:18 +00:00
set ttimeout
2021-01-18 01:20:30 +00:00
set ttimeoutlen=50
2015-04-17 14:27:43 +00:00
set ttyfast
set wildignore+=*/tmp/*
set wildmenu
2015-01-30 07:30:09 +00:00
if &shell =~ 'bin/fish'
set shell=/bin/sh
endif