about summary refs log tree commit diff
path: root/vim/.vimrc
blob: db507dee0686fbf1414cf4a26f625460cde22c54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
filetype plugin indent on

syntax enable

set autoindent
set backspace=indent,eol,start
set complete-=i
set smarttab
set tabstop=4
set shiftwidth=4
set expandtab

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>

set rtp+=~/.fzf

" vim:set ft=vim et sw=2: