-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.minimal
83 lines (83 loc) · 1.44 KB
/
vimrc.minimal
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
set nocompatible
filetype off
filetype indent on
set wildmenu
set backspace=indent,eol,start
set encoding=utf-8 nobomb
set ttyfast
set synmaxcol=200
set number
set norelativenumber
set tabstop=2
set shiftwidth=2
set softtabstop=2
set shiftround
set smarttab
set smartindent
set autoindent
set smartcase
set lcs=tab:▸\ ,trail:·,eol:¬,nbsp:_
set list
set hlsearch
set incsearch
set showmatch
set gdefault
set incsearch
set display=lastline
set laststatus=2
set splitbelow
set splitright
set mouse=a
set ruler
set showmode
set noerrorbells
set notitle
set autoread
set showcmd
set binary
set noeol
set modeline
set modelines=4
set exrc
set secure
set nocursorline
set nocursorcolumn
set lazyredraw
set redrawtime=10000
set foldmethod=indent
set foldlevel=99
set updatetime=300
set shortmess+=c
set noswapfile
set colorcolumn=80
set nopaste
set expandtab
set hidden
set wrap
set wrapscan
set report=0
set linebreak
set textwidth=0
set wrapmargin=0
set formatoptions-=t
set showbreak=>\ \ \
set cmdheight=2
set ic
set t_Co=256
set background=dark
set clipboard=unnamedplus
set backup
set backupdir=$HOME/.vim/files/backup/
set backupext=-vimbackup
set backupskip=
set directory=$HOME/.vim/files/swap/
set updatecount=100
set undofile
set undodir=$HOME/.vim/files/undo/
set viminfo='100,n$HOME/.vim/files/info/viminfo
syntax on
syntax sync minlines=256
map q <Nop> " Turn off recording
hi ColorColumn ctermbg=NONE ctermfg=red
hi Bang ctermfg=red guifg=red
match Bang /\%>80v.*/