-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
41 lines (29 loc) · 812 Bytes
/
.vimrc
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
" .vimrc configuration
" Status bar
set laststatus=2
" Display options
set showmode
set showcmd
" Jump between matching brackets with %
set matchpairs+=<:>
" Display different types of white spaces and control chars
set list
" set listchars=tab:›\ ,trail:•,extends:#,nbsp:.
" Line numbers
set number
" Set status line display
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ [BUFFER=%n]\ %{strftime('%c')}
" Encoding
set encoding=utf-8
" Highlight matching search patterns
set hlsearch
" Enable incremental search
set incsearch
" Include matching uppercase words with lowercase search term
set ignorecase
" Include only uppercase words with uppercase search term
set smartcase
" PLUGINS
"call plug$begin('~/.vim/plugged')
"Plug 'vim-airline/vim-airline'
"call plug#end()