-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimrc
49 lines (40 loc) · 865 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
42
43
44
45
46
47
48
" Set 256Color terminal and mouse
set laststatus=2
set termguicolors
set ttymouse=xterm2
set mouse=a
set nocompatible
filetype off
" Add vundle support
set rtp+=~/.vim/bundle/vundle/
call vundle#begin()
" Let Vundle manage Vundle
Plugin 'gmarik/vundle'
" Bundles
Plugin 'scrooloose/nerdtree'
Plugin 'vim-airline/vim-airline'
Plugin 'ShowTrailingWhitespace'
Plugin 'dracula/vim'
nmap <F5> :NERDTreeToggle<cr>
call vundle#end()
" Indent on
filetype plugin indent on
" Syntax on
syntax on
" Line number
set number
set relativenumber
" Backspace indent, eol, start
set backspace=2
" Current line highlight
set cursorline
" Disable mouse auto visual
set mouse-=a
" 80 character count
set colorcolumn=80
" Ignore truecolor and italic settings
" https://github.com/dracula/vim/issues/96
"let g:dracula_colorterm = 0
let g:dracula_italic = 0
" Theme
color dracula