blob: c89498d2b79bc793757fb58ea4c09aa67f1bf098 (
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
36
37
38
39
|
" Display & Feedback
" Briefly jump to matching bracket
set showmatch
" Show cursor position (line, column)
set ruler
" Show filename in status line
set showfilename
" Show current mode (INSERT/COMMAND)
set showmode
" Flash screen instead of beeping
set flash
" Indentation & Formatting
" Enable auto-indent
set autoindent
" Set left to right ( nowrap )
set leftright
" Search
" Case-insensitive search
set ignorecase
" Smart case (respect uppercase)
set iclower
" Incremental search
set searchincr
" Searches wrap around file
set wrapscan
" Command Line (Tab completion & history editing)
" Press Tab on : command-line to edit history
set cedit=\
" Press Tab to autocomplete filenames
set filec=\
|