bens-dotfiles/vim/.vimrc

38 lines
441 B
VimL
Raw Permalink Normal View History

2018-08-16 23:05:54 +00:00
filetype plugin indent on
syntax enable
set autoindent
set backspace=indent,eol,start
set complete-=i
set smarttab
2018-09-24 14:54:58 +00:00
set tabstop=4
set shiftwidth=4
set expandtab
2018-08-16 23:05:54 +00:00
set nrformats-=octal
set incsearch
set laststatus=2
set ruler
set wildmenu
set display+=lastline
set encoding=utf-8
set autoread
set history=1000
set tabpagemax=50
inoremap <C-U> <C-G>u<C-U>
2018-09-25 20:09:27 +00:00
cmap w!! w !sudo tee % >/dev/null
2018-08-21 14:30:32 +00:00
set rtp+=~/.fzf
2018-08-16 23:05:54 +00:00
" vim:set ft=vim et sw=2: