-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
48 lines (42 loc) · 720 Bytes
/
.vimrc
File metadata and controls
48 lines (42 loc) · 720 Bytes
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
" === Syntax & Colors ===
syntax on
filetype plugin indent on
set background=dark
colorscheme desert
" === UI ===
set number
set ruler
set laststatus=2
set showcmd
set showmatch
set cursorline
set wildmenu
set wildmode=longest:full,full
set scrolloff=5
set signcolumn=yes
" === Search ===
set hlsearch
set incsearch
set ignorecase
set smartcase
" === Indentation ===
set autoindent
set smartindent
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=4
" === Encoding & Files ===
set encoding=utf-8
set fileencoding=utf-8
set noswapfile
set nobackup
set nowritebackup
set hidden
" === Input ===
set backspace=indent,eol,start
set mouse=a
set ttimeoutlen=50
" === Performance ===
set ttyfast
set lazyredraw